587ae25b84177c5af73d1794bba555c6643b39bd
Stefan Schuermans simplified sender module a...

Stefan Schuermans authored 12 years ago

1) /* Blinker
2)    Copyright 2011 Stefan Schuermans <stefan@blinkenarea.org>
3)    Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
4)    a blinkenarea.org project */
5) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

6) #ifndef BLINKER_PROTOCOL_H
7) #define BLINKER_PROTOCOL_H
Stefan Schuermans simplified sender module a...

Stefan Schuermans authored 12 years ago

8) 
9) #include <string>
10) 
11) #include <BlinkenLib/BlinkenProto.h>
12) 
13) namespace Blinker {
14) 
15) /// a Blinken protocol
16) class Protocol
17) {
18) public:
19)   /// constructor
20)   Protocol();
21) 
22) public:
23)   /**
24)    * @brief parse from string format
25)    * @param[in] str string format
26)    * @return if parsing was successful
27)    */
28)   bool fromStr(const std::string &str);
29) 
30)   /**
31)    * @brief convert to string format
32)    * @return string format
33)    */
34)   std::string toStr() const;
35) 
36) public:
37)   etBlinkenProto m_proto; ///< protocol
38) }; // class Protocol
39) 
40) } // namespace Blinker
41) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

42) #endif // #ifndef BLINKER_PROTOCOL_H