diff options
author | JINMEI Tatuya <jinmei@isc.org> | 2010-04-13 00:53:37 +0200 |
---|---|---|
committer | JINMEI Tatuya <jinmei@isc.org> | 2010-04-13 00:53:37 +0200 |
commit | 886bc05b44d22ec8b2f0de808fb7c20943dc9b0e (patch) | |
tree | 0391680c2bd82bac619d76302a2954fd372ac436 /src/lib/dns/rdata/hs_4 | |
parent | supported case-sensitive name compression in MessageRenderer. (diff) | |
download | kea-886bc05b44d22ec8b2f0de808fb7c20943dc9b0e.tar.xz kea-886bc05b44d22ec8b2f0de808fb7c20943dc9b0e.zip |
cleanup: use relative path to header files from "src/lib", i.e., s/"name.h"/<dns/name.h", etc. also removed unnecessary header files to be included.
git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1705 e5f2f494-b856-4b98-b285-d166d9295462
Diffstat (limited to 'src/lib/dns/rdata/hs_4')
-rw-r--r-- | src/lib/dns/rdata/hs_4/a_1.cc | 11 | ||||
-rw-r--r-- | src/lib/dns/rdata/hs_4/a_1.h | 2 |
2 files changed, 7 insertions, 6 deletions
diff --git a/src/lib/dns/rdata/hs_4/a_1.cc b/src/lib/dns/rdata/hs_4/a_1.cc index 2294ed6242..bf009e9880 100644 --- a/src/lib/dns/rdata/hs_4/a_1.cc +++ b/src/lib/dns/rdata/hs_4/a_1.cc @@ -14,15 +14,16 @@ // $Id$ -#include <config.h> // for UNUSED +#include <config.h> // for UNUSED_PARAM #include <string> -#include "buffer.h" #include <exceptions/exceptions.h> -#include "messagerenderer.h" -#include "rdata.h" -#include "rdataclass.h" + +#include <dns/buffer.h> +#include <dns/messagerenderer.h> +#include <dns/rdata.h> +#include <dns/rdataclass.h> using namespace std; diff --git a/src/lib/dns/rdata/hs_4/a_1.h b/src/lib/dns/rdata/hs_4/a_1.h index dcd2f7dafc..9e827bbbb0 100644 --- a/src/lib/dns/rdata/hs_4/a_1.h +++ b/src/lib/dns/rdata/hs_4/a_1.h @@ -18,7 +18,7 @@ #include <string> -#include "rdata.h" +#include <dns/rdata.h> // BEGIN_ISC_NAMESPACE |