From 4badc791d1681336cb77bed9b46ed76f842cd21f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 1 Dec 2010 17:18:33 +0200 Subject: Remove unused object id accessor --- container/person.hxx | 10 +--------- mapping/person.hxx | 7 ------- query/person.hxx | 7 ------- template/person.hxx | 7 ------- 4 files changed, 1 insertion(+), 30 deletions(-) diff --git a/container/person.hxx b/container/person.hxx index a36c0e8..f9160b8 100644 --- a/container/person.hxx +++ b/container/person.hxx @@ -16,8 +16,7 @@ class person { public: - person (const std::string& first, - const std::string& last) + person (const std::string& first, const std::string& last) : first_ (first), last_ (last) { } @@ -82,13 +81,6 @@ public: return age_weight_; } -public: - unsigned long - id () const - { - return id_; - } - private: friend class odb::access; diff --git a/mapping/person.hxx b/mapping/person.hxx index b091944..ba07ef5 100644 --- a/mapping/person.hxx +++ b/mapping/person.hxx @@ -90,13 +90,6 @@ public: return married_; } -public: - unsigned long - id () const - { - return id_; - } - private: friend class odb::access; diff --git a/query/person.hxx b/query/person.hxx index ad2adc3..72da079 100644 --- a/query/person.hxx +++ b/query/person.hxx @@ -38,13 +38,6 @@ public: return age_; } -public: - unsigned long - id () const - { - return id_; - } - private: friend class odb::access; diff --git a/template/person.hxx b/template/person.hxx index f496693..1127e78 100644 --- a/template/person.hxx +++ b/template/person.hxx @@ -38,13 +38,6 @@ public: return age_; } -public: - unsigned long - id () const - { - return id_; - } - private: friend class odb::access; -- cgit v1.1