Browse Source

checkpoint: minor cleanup

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/jinmei-dnsrrset@854 e5f2f494-b856-4b98-b285-d166d9295462
JINMEI Tatuya 15 years ago
parent
commit
ab794b8819
1 changed files with 4 additions and 5 deletions
  1. 4 5
      src/lib/dns/cpp/rrset.h

+ 4 - 5
src/lib/dns/cpp/rrset.h

@@ -19,7 +19,6 @@
 
 #include <iostream>
 #include <string>
-#include <vector>
 
 #include <boost/shared_ptr.hpp>
 
@@ -73,6 +72,10 @@ typedef boost::shared_ptr<RdataIterator> RdataIteratorPtr;
 //     by one)?  ldns has ldns_rr_list_compare(), which takes
 //     the latter approach (assuming the caller sorts the lists
 //     beforehand?).
+//   - do we need to allow the user to remove specific Rdata?
+///    Looking at the BIND9 code, don't see the strong need for this at the
+///    moment.
+///
 class AbstractRRset {
 public:
     virtual ~AbstractRRset() {}
@@ -92,10 +95,6 @@ public:
     /// once constructed, only TTL and the set of Rdata can be modified,
     /// so \c setTTL() is the only explicit setter method.
     ///
-    /// Do we need to allow the user to remove specific Rdata?
-    /// Looking at the BIND9 code, don't see the strong need for this at the
-    /// moment.
-    ///
     virtual void setTTL(const RRTTL& ttl) = 0;
 
     ///