waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

HelloWorld.h (286B)


      1 #ifndef HelloWorld_h_seen
      2 #define HelloWorld_h_seen
      3 #include <string>
      4 class HelloWorld
      5 {
      6   public:
      7     HelloWorld();
      8     HelloWorld(const std::string & msg);
      9 
     10     std::string message() const;
     11     void setMessage(const std::string & msg);
     12   private:
     13     std::string m_message;
     14 };
     15 #endif