X-Git-Url: http://git.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Ffilter_zoom.cpp;h=bce817c74e07f5d608950e452efc4d6bedef05c6;hb=cd54d9cec3b4db6f3b39e7d506c7d88877d54fc7;hp=3579621f49145496a8ce6c554edd9eee1168fcfd;hpb=9216b7cb9f26cc503cb1e25e30194257a01be9fd;p=metaproxy-moved-to-github.git diff --git a/src/filter_zoom.cpp b/src/filter_zoom.cpp index 3579621..bce817c 100644 --- a/src/filter_zoom.cpp +++ b/src/filter_zoom.cpp @@ -40,7 +40,7 @@ namespace yf = mp::filter; namespace metaproxy_1 { namespace filter { - struct Zoom::Searchable { + struct Zoom::Searchable : boost::noncopyable { std::string database; std::string target; std::string query_encoding; @@ -55,7 +55,7 @@ namespace metaproxy_1 { Searchable(); ~Searchable(); }; - class Zoom::Backend { + class Zoom::Backend : boost::noncopyable { friend class Impl; friend class Frontend; std::string zurl; @@ -75,7 +75,7 @@ namespace metaproxy_1 { void set_option(const char *name, const char *value); int get_error(const char **addinfo); }; - class Zoom::Frontend { + class Zoom::Frontend : boost::noncopyable { friend class Impl; Impl *m_p; bool m_is_virtual;