2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 22:15:23 +00:00

[4489] Removed RestrictedConstPtr class.

This commit is contained in:
Marcin Siodelski
2016-07-28 21:08:43 +02:00
parent fe0424b032
commit bfb36f3d0c
5 changed files with 57 additions and 56 deletions

View File

@@ -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_;
};
}