587ae25b84177c5af73d1794bba555c6643b39bd
Stefan Schuermans implemented specialized set...

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_NAME_H
7) #define BLINKER_NAME_H
Stefan Schuermans implemented specialized set...

Stefan Schuermans authored 12 years ago

8) 
9) #include <string>
10) 
11) namespace Blinker {
12) 
13) /// a name (a wrapper for std::string to use it as templ param of SettingFile)
14) class Name
15) {
16) public:
17)   /// constructor
18)   Name();
19) 
20) public:
21)   /**
22)    * @brief parse from string format
23)    * @param[in] str string format
24)    * @return if parsing was successful
25)    */
26)   bool fromStr(const std::string &str);
27) 
28)   /**
29)    * @brief convert to string format
30)    * @return string format
31)    */
32)   std::string toStr() const;
33) 
34) public:
35)   std::string m_str; ///< name string
36) }; // class Name
37) 
38) } // namespace Blinker
39) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

40) #endif // #ifndef BLINKER_NAME_H