Browse Source

[2435] Rename DsIter iterator class to DatasrcIter

Mukund Sivaraman 12 years ago
parent
commit
a6e58431e3
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/lib/datasrc/rrset_collection.h

+ 3 - 3
src/lib/datasrc/rrset_collection.h

@@ -52,9 +52,9 @@ private:
     ZoneUpdaterPtr updater_;
 
 protected:
-    class DsIter : public RRsetCollectionBase::Iter {
+    class DatasrcIter : public RRsetCollectionBase::Iter {
     public:
-        DsIter()
+        DatasrcIter()
         {}
 
         virtual const isc::dns::AbstractRRset& getValue() {
@@ -66,7 +66,7 @@ protected:
         }
 
         virtual bool equals(Iter& other) {
-            const DsIter* other_real = dynamic_cast<DsIter*>(&other);
+            const DatasrcIter* other_real = dynamic_cast<DatasrcIter*>(&other);
             if (other_real == NULL) {
                 return (false);
             }