diff options
author | Marcin Siodelski <marcin@isc.org> | 2016-12-06 19:59:52 +0100 |
---|---|---|
committer | Marcin Siodelski <marcin@isc.org> | 2016-12-06 19:59:52 +0100 |
commit | ab7c9a978bc3c6c71e59fce7ea5dec04a91bfaa2 (patch) | |
tree | e566ca9c6b1d36cfd57fc952d30ab27225800e3e /src/bin/d2/nc_trans.h | |
parent | [master] ChangeLog for Trac #5069 (diff) | |
download | kea-ab7c9a978bc3c6c71e59fce7ea5dec04a91bfaa2.tar.xz kea-ab7c9a978bc3c6c71e59fce7ea5dec04a91bfaa2.zip |
[3175] Moved StateModel class from D2 to libkea-util.
Diffstat (limited to 'src/bin/d2/nc_trans.h')
-rw-r--r-- | src/bin/d2/nc_trans.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/d2/nc_trans.h b/src/bin/d2/nc_trans.h index 4fc70e9cc2..77f8fb3fb7 100644 --- a/src/bin/d2/nc_trans.h +++ b/src/bin/d2/nc_trans.h @@ -1,4 +1,4 @@ -// Copyright (C) 2013-2015 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2013-2016 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this @@ -13,9 +13,9 @@ #include <exceptions/exceptions.h> #include <d2/d2_cfg_mgr.h> #include <d2/dns_client.h> -#include <d2/state_model.h> #include <dhcp_ddns/ncr_msg.h> #include <dns/tsig.h> +#include <util/state_model.h> #include <boost/shared_ptr.hpp> #include <map> @@ -74,7 +74,7 @@ typedef isc::dhcp_ddns::D2Dhcid TransactionKey; /// as needed, but it must support the common set. NameChangeTransaction /// does not supply any state handlers. These are the sole responsibility of /// derivations. -class NameChangeTransaction : public DNSClient::Callback, public StateModel { +class NameChangeTransaction : public DNSClient::Callback, public util::StateModel { public: //@{ States common to all transactions. |