ce79af14c64dc01d101556c5aaa34dc6f09f6c10
[metaproxy-moved-to-github.git] / src / filter_session_shared.hpp
1 /* $Id: filter_session_shared.hpp,v 1.1 2005-11-14 23:35:22 adam Exp $
2    Copyright (c) 2005, 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 yp2 {
15     namespace filter {
16         class Session_shared : public Base {
17             class Rep;
18             class InitKey;
19             class List;
20         public:
21             ~Session_shared();
22             Session_shared();
23             void process(yp2::Package & package) const;
24         private:
25             boost::scoped_ptr<Rep> m_p;
26         };
27     }
28 }
29
30 #endif
31 /*
32  * Local variables:
33  * c-basic-offset: 4
34  * indent-tabs-mode: nil
35  * c-file-style: "stroustrup"
36  * End:
37  * vim: shiftwidth=4 tabstop=8 expandtab
38  */