Class.hpp 637 B

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