[svn] commit: r717 - in /branches/parkinglot/src/lib: auth/cpp/data_source.h dns/cpp/rrset.h
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Feb 3 19:13:37 UTC 2010
Author: jinmei
Date: Wed Feb 3 19:13:36 2010
New Revision: 717
Log:
moved RRsetList to the data source module. it doesn't have to be in the
DNS library, and since we want to make the latter a general purpose library
we should avoid having dependency on std objects as much as possible.
Modified:
branches/parkinglot/src/lib/auth/cpp/data_source.h
branches/parkinglot/src/lib/dns/cpp/rrset.h
Modified: branches/parkinglot/src/lib/auth/cpp/data_source.h
==============================================================================
--- branches/parkinglot/src/lib/auth/cpp/data_source.h (original)
+++ branches/parkinglot/src/lib/auth/cpp/data_source.h Wed Feb 3 19:13:36 2010
@@ -36,6 +36,8 @@
};
class DataSrc;
+
+typedef std::vector<RRsetPtr> RRsetList;
class AbstractDataSrc {
public:
Modified: branches/parkinglot/src/lib/dns/cpp/rrset.h
==============================================================================
--- branches/parkinglot/src/lib/dns/cpp/rrset.h (original)
+++ branches/parkinglot/src/lib/dns/cpp/rrset.h Wed Feb 3 19:13:36 2010
@@ -39,7 +39,6 @@
typedef boost::shared_ptr<AbstractRRset> RRsetPtr;
class BasicRRset;
typedef BasicRRset RRset;
-typedef std::vector<RRsetPtr> RRsetList;
class BasicRRsetImpl;
class RdataIterator;
More information about the bind10-changes
mailing list