removed some useless spaces; not very important, I know :)
[senf.git] / Socket / Protocols / DVB / DVBFrontendHandle.hh
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Thorsten Horstmann <tho@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 /** \file
24     \brief DVBFrontendHandle public header */
25
26 #ifndef HH_DVBFrontendHandle_
27 #define HH_DVBFrontendHandle_ 1
28
29 // Custom includes
30 #include <boost/cstdint.hpp>
31 #include <linux/dvb/frontend.h> 
32 #include "../../../Socket/FramingPolicy.hh"
33 #include "../../../Socket/CommunicationPolicy.hh"
34 #include "../../../Socket/ReadWritePolicy.hh"
35 #include "../../../Socket/ProtocolClientSocketHandle.hh"
36 #include "../../../Socket/SocketProtocol.hh"
37
38 //#include "DVBFrontendHandle.mpp"
39 ///////////////////////////////hh.p////////////////////////////////////////
40
41 namespace senf {
42
43     /// \addtogroup concrete_protocol_group
44     /// @{
45
46     typedef MakeSocketPolicy<
47         NoAddressingPolicy,
48         DatagramFramingPolicy,
49         UnconnectedCommunicationPolicy,
50         NotReadablePolicy,
51         NotWriteablePolicy
52         >::policy DVBFrontend_Policy;   ///< Socket Policy for xxxx
53
54     /** \brief xxx
55      */
56     class DVBFrontendProtocol
57         : public ConcreteSocketProtocol<DVBFrontend_Policy, DVBFrontendProtocol>
58     {
59     public:
60         ///////////////////////////////////////////////////////////////////////////
61         // internal interface
62
63         ///\name Constructors
64         ///@{
65
66         void init_client(boost::uint8_t adapter=0, boost::uint8_t device=0) const;       ///< xxx
67                                         /**< \note This member is implicitly called from the
68                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
69                                              constructor */
70
71         ///@}
72         ///\name Abstract Interface Implementation
73         ///@{
74         
75         unsigned available() const;
76         bool eof() const;
77
78         ///@}
79         
80         void signalStrength(int16_t *strength) const;
81     };
82
83     typedef ProtocolClientSocketHandle<DVBFrontendProtocol> DVBFrontendHandle;
84
85     ///@}
86 }
87
88
89 ///////////////////////////////hh.e////////////////////////////////////////
90 //#include "DVBFrontendHandle.cci"
91 //#include "DVBFrontendHandle.ct"
92 //#include "DVBFrontendHandle.cti"
93 #endif
94
95 \f
96 // Local Variables:
97 // mode: c++
98 // fill-column: 100
99 // c-file-style: "senf"
100 // indent-tabs-mode: nil
101 // ispell-local-dictionary: "american"
102 // compile-command: "scons -u test"
103 // comment-column: 40
104 // End: