Rename from yp2 to metaproxy. The namespace for all definitions
[metaproxy-moved-to-github.git] / src / filter_session_shared.hpp
1 /* $Id: filter_session_shared.hpp,v 1.4 2006-03-16 10:40:59 adam Exp $
2    Copyright (c) 2005-2006, Index Data.
3
4 %LICENSE%
5  */
6
7 #ifndef FILTER_SESSION_SHARED_HPP
8 #define FILTER_SESSION_SHARED_HPP
9
10 #include <boost/scoped_ptr.hpp>
11
12 #include "filter.hpp"
13
14 namespace metaproxy_1 {
15     namespace filter {
16         class SessionShared : public Base {
17             class Rep;
18             class InitKey;
19             class List;
20         public:
21             ~SessionShared();
22             SessionShared();
23             void process(metaproxy_1::Package & package) const;
24         private:
25             boost::scoped_ptr<Rep> m_p;
26         };
27     }
28 }
29
30 extern "C" {
31     extern struct metaproxy_1_filter_struct metaproxy_1_filter_session_shared;
32 }
33
34 #endif
35 /*
36  * Local variables:
37  * c-basic-offset: 4
38  * indent-tabs-mode: nil
39  * c-file-style: "stroustrup"
40  * End:
41  * vim: shiftwidth=4 tabstop=8 expandtab
42  */