Add LICENSE file and Refer to it from the source. Include license material
[metaproxy-moved-to-github.git] / src / filter_session_shared.hpp
1 /* $Id: filter_session_shared.hpp,v 1.6 2006-06-10 14:29:12 adam Exp $
2    Copyright (c) 2005-2006, Index Data.
3
4    See the LICENSE file for details
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
21             struct Frontend;
22             class BackendClass;
23             typedef boost::shared_ptr<Frontend> FrontendPtr;
24         public:
25             ~SessionShared();
26             SessionShared();
27             void process(metaproxy_1::Package & package) const;
28         private:
29             boost::scoped_ptr<Rep> m_p;
30         };
31     }
32 }
33
34 extern "C" {
35     extern struct metaproxy_1_filter_struct metaproxy_1_filter_session_shared;
36 }
37
38 #endif
39 /*
40  * Local variables:
41  * c-basic-offset: 4
42  * indent-tabs-mode: nil
43  * c-file-style: "stroustrup"
44  * End:
45  * vim: shiftwidth=4 tabstop=8 expandtab
46  */