Class.hpp 653 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-07
  6. * Changed: 2022-05-09
  7. *
  8. * */
  9. #ifndef LS_STD_CLASS_HPP
  10. #define LS_STD_CLASS_HPP
  11. #include <string>
  12. namespace ls
  13. {
  14. namespace std
  15. {
  16. namespace core
  17. {
  18. class Class
  19. {
  20. public:
  21. explicit Class(const ::std::string &_name);
  22. virtual ~Class() = default;
  23. ::std::string getClassName();
  24. private:
  25. ::std::string name{};
  26. void _assignClassName(const ::std::string &_name);
  27. };
  28. }
  29. }
  30. }
  31. #endif