Rename from yp2 to metaproxy. The namespace for all definitions
[metaproxy-moved-to-github.git] / src / filter.cpp
1 /* $Id: filter.cpp,v 1.7 2006-03-16 10:40:59 adam Exp $
2    Copyright (c) 2005-2006, Index Data.
3
4 %LICENSE%
5  */
6
7 #include <stdexcept>
8
9 #include "config.hpp"
10 #include "filter.hpp"
11
12 namespace mp = metaproxy_1;
13
14 void mp::filter::Base::configure(const xmlNode * ptr)
15 {
16     mp::xml::check_empty(ptr);
17 }
18
19 /*
20  * Local variables:
21  * c-basic-offset: 4
22  * indent-tabs-mode: nil
23  * c-file-style: "stroustrup"
24  * End:
25  * vim: shiftwidth=4 tabstop=8 expandtab
26  */