362c1f4c3b5ce9e3fce11167a51fbe4cdb2174de
Stefan Schuermans implemented specialized set...

Stefan Schuermans authored 12 years ago

src/noarch/Name.h  1) /* Blinker
Stefan Schuermans update copyright header

Stefan Schuermans authored 5 years ago

src/common/Name.h  2)    Copyright 2011-2019 Stefan Schuermans <stefan@blinkenarea.org>
Stefan Schuermans implemented specialized set...

Stefan Schuermans authored 12 years ago

src/noarch/Name.h  3)    Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
src/noarch/Name.h  4)    a blinkenarea.org project */
src/noarch/Name.h  5) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

src/noarch/Name.h  6) #ifndef BLINKER_NAME_H
src/noarch/Name.h  7) #define BLINKER_NAME_H
Stefan Schuermans implemented specialized set...

Stefan Schuermans authored 12 years ago

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

Stefan Schuermans authored 12 years ago

src/noarch/Name.h 40) #endif // #ifndef BLINKER_NAME_H