cleaning code
[metaproxy-moved-to-github.git] / src / filter_log.hpp
1 /* $Id: filter_log.hpp,v 1.17 2006-09-29 12:24:49 marc Exp $
2    Copyright (c) 2005-2006, Index Data.
3
4    See the LICENSE file for details
5  */
6
7 #ifndef FILTER_LOG_HPP
8 #define FILTER_LOG_HPP
9
10 #include <boost/scoped_ptr.hpp>
11 #include <boost/shared_ptr.hpp>
12
13 #include "filter.hpp"
14
15 namespace metaproxy_1 {
16     namespace filter {
17         class Log : public Base {
18         public:
19             Log();
20             Log(const std::string &x);
21             ~Log();
22             void process(metaproxy_1::Package & package) const;
23             void configure(const xmlNode * ptr);
24             //class LFile;
25         private:
26             class Impl;
27             boost::scoped_ptr<Impl> m_p;
28         };
29     }
30 }
31
32 extern "C" {
33     extern struct metaproxy_1_filter_struct metaproxy_1_filter_log;
34 }
35
36 #endif
37 /*
38  * Local variables:
39  * c-basic-offset: 4
40  * indent-tabs-mode: nil
41  * c-file-style: "stroustrup"
42  * End:
43  * vim: shiftwidth=4 tabstop=8 expandtab
44  */