NEW FILE HEADER / COPYRIGHT FORMAT
[senf.git] / Socket / SocketProtocol.test.hh
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS) 
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY 
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 #ifndef HH_SocketProtocol_test_
24 #define HH_SocketProtocol_test_ 1
25
26 // Custom includes
27 #include "SocketProtocol.hh"
28 #include "SocketPolicy.test.hh"
29 #include "ProtocolClientSocketHandle.hh"
30
31 //#include "SocketProtocol.test.mpp"
32 ///////////////////////////////hh.p////////////////////////////////////////
33
34 namespace senf {
35
36 namespace test {
37
38     class SomeProtocol
39         : public ConcreteSocketProtocol<SomeSocketPolicy>
40     {
41     public:
42         ~SomeProtocol() {}
43
44         void init_client() const {}
45         void init_server() const {}
46
47         std::auto_ptr<SocketProtocol> clone() const
48             { return std::auto_ptr<SocketProtocol>(new SomeProtocol()); }
49         unsigned available() const
50             { return Policy::ReadPolicy::TEST_SIZE; }
51         bool eof() const
52             { return false; }
53     };
54
55 }}
56
57 ///////////////////////////////hh.e////////////////////////////////////////
58 //#include "SocketProtocol.test.cci"
59 //#include "SocketProtocol.test.ct"
60 //#include "SocketProtocol.test.cti"
61 //#include "SocketProtocol.test.mpp"
62 #endif
63
64 \f
65 // Local Variables:
66 // mode: c++
67 // fill-column: 100
68 // c-file-style: "senf"
69 // indent-tabs-mode: nil
70 // ispell-local-dictionary: "american"
71 // compile-command: "scons -u test"
72 // comment-column: 40
73 // End: