Class.hpp 482 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-07
  6. * Changed: 2020-11-06
  7. *
  8. * */
  9. #ifndef LS_STD_CLASS_HPP
  10. #define LS_STD_CLASS_HPP
  11. #include <string>
  12. namespace ls_std {
  13. class Class {
  14. public:
  15. explicit Class(std::string _name);
  16. ~Class() = default;
  17. std::string getClassName();
  18. private:
  19. std::string name {};
  20. };
  21. }
  22. #endif