From: Paul Selkirk Date: Wed, 29 May 2013 19:15:21 +0000 (-0400) Subject: [2907] add SingletonList::getZoneTableAccessor because of base class change X-Git-Tag: bind10-1.2.0beta1-release~411^2~7^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=16f7fffa1820f7e65d28e807a81d89dd59390037;p=thirdparty%2Fkea.git [2907] add SingletonList::getZoneTableAccessor because of base class change --- diff --git a/src/bin/auth/tests/query_unittest.cc b/src/bin/auth/tests/query_unittest.cc index 9bf1358ca2..506576f372 100644 --- a/src/bin/auth/tests/query_unittest.cc +++ b/src/bin/auth/tests/query_unittest.cc @@ -80,6 +80,12 @@ public: return (FindResult()); } } + virtual ConstZoneTableAccessorPtr + getZoneTableAccessor(const std::string&, bool) const { + isc_throw(isc::NotImplemented, + "getZoneTableAccessor not implemented for SingletonList"); + } + private: DataSourceClient& client_; };