Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 2053a0d9eaaf755b990f80ce4df504a7 > files > 385

waf-1.5.9-1mdv2010.0.noarch.rpm

#ifndef HelloWorld_h_seen
#define HelloWorld_h_seen
#include <string>
class HelloWorld
{
  public:
    HelloWorld();
    HelloWorld(const std::string & msg);

    std::string message() const;
    void setMessage(const std::string & msg);
  private:
    std::string m_message;
};
#endif