From: Mukund Sivaraman Date: Wed, 9 Jan 2013 05:10:51 +0000 (+0530) Subject: [2435] Rename DsIter iterator class to DatasrcIter X-Git-Tag: bind10-1.0.0-rc-release~127 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=173f076fb4c6d687de433786e0cf1ffd53fb95b2;p=thirdparty%2Fkea.git [2435] Rename DsIter iterator class to DatasrcIter --- diff --git a/src/lib/datasrc/rrset_collection.h b/src/lib/datasrc/rrset_collection.h index 77c1574598..df307c726f 100644 --- a/src/lib/datasrc/rrset_collection.h +++ b/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(&other); + const DatasrcIter* other_real = dynamic_cast(&other); if (other_real == NULL) { return (false); }