summaryrefslogtreecommitdiffstats
path: root/src/lib/dns/name.h
diff options
context:
space:
mode:
authorRazvan Becheriu <razvan@isc.org>2024-03-01 19:37:15 +0100
committerRazvan Becheriu <razvan@isc.org>2024-03-07 12:42:05 +0100
commit561b90bee8e741369eb5b6b85c51a7a4d9add501 (patch)
tree37a4c2f82db5a9e19cc0db238c6271d392be22b9 /src/lib/dns/name.h
parent[#3270] Make Perfmon addSampleAndClear UT reliable (diff)
downloadkea-561b90bee8e741369eb5b6b85c51a7a4d9add501.tar.xz
kea-561b90bee8e741369eb5b6b85c51a7a4d9add501.zip
[#3208] remove unused code in libdns
Diffstat (limited to 'src/lib/dns/name.h')
-rw-r--r--src/lib/dns/name.h16
1 files changed, 4 insertions, 12 deletions
diff --git a/src/lib/dns/name.h b/src/lib/dns/name.h
index 0720684097..226fa79995 100644
--- a/src/lib/dns/name.h
+++ b/src/lib/dns/name.h
@@ -5,7 +5,10 @@
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#ifndef NAME_H
-#define NAME_H 1
+#define NAME_H
+
+#include <util/buffer.h>
+#include <dns/messagerenderer.h>
#include <stdint.h>
@@ -15,14 +18,7 @@
#include <dns/exceptions.h>
namespace isc {
-namespace util {
-class InputBuffer;
-class OutputBuffer;
-}
-
namespace dns {
-class AbstractMessageRenderer;
-
///
/// \brief A standard DNS module exception that is thrown if the name parser
/// encounters an empty label in the middle of a name.
@@ -760,7 +756,3 @@ operator<<(std::ostream& os, const Name& name);
}
}
#endif // NAME_H
-
-// Local Variables:
-// mode: c++
-// End: