hello.h 104 B

123456789
  1. #pragma once
  2. #include <string>
  3. class hello
  4. {
  5. public:
  6. hello();
  7. ~hello();
  8. static std::string name();
  9. };