diff options
author | Marcin Siodelski <marcin@isc.org> | 2016-07-28 21:08:43 +0200 |
---|---|---|
committer | Marcin Siodelski <marcin@isc.org> | 2016-07-28 21:13:01 +0200 |
commit | bfb36f3d0ca1ac049eba25ae4e573df7a4c7fbd1 (patch) | |
tree | 6813f013b928852d7dc2563cd0b8e0c86259c304 /src/lib/dhcpsrv/pgsql_host_data_source.h | |
parent | [4489] Updated documentation for "readonly" database parameter. (diff) | |
download | kea-bfb36f3d0ca1ac049eba25ae4e573df7a4c7fbd1.tar.xz kea-bfb36f3d0ca1ac049eba25ae4e573df7a4c7fbd1.zip |
[4489] Removed RestrictedConstPtr class.
Diffstat (limited to 'src/lib/dhcpsrv/pgsql_host_data_source.h')
-rw-r--r-- | src/lib/dhcpsrv/pgsql_host_data_source.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/dhcpsrv/pgsql_host_data_source.h b/src/lib/dhcpsrv/pgsql_host_data_source.h index ab062efc3c..40ad840c86 100644 --- a/src/lib/dhcpsrv/pgsql_host_data_source.h +++ b/src/lib/dhcpsrv/pgsql_host_data_source.h @@ -8,10 +8,8 @@ #define PGSQL_HOST_DATA_SOURCE_H #include <dhcpsrv/base_host_data_source.h> -#include <dhcpsrv/db_exceptions.h> #include <dhcpsrv/pgsql_connection.h> #include <dhcpsrv/pgsql_exchange.h> -#include <util/pointer_util.h> namespace isc { namespace dhcp { @@ -288,7 +286,7 @@ public: private: /// @brief Pointer to the implementation of the @ref PgSqlHostDataSource. - util::RestrictedConstPtr<PgSqlHostDataSourceImpl, ReadOnlyDb> impl_; + PgSqlHostDataSourceImpl* impl_; }; } |