IBoxing.hpp 629 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Co-Author: Claude Sonnet 4.6 (LLM)
  4. * Company: Lynar Studios
  5. * E-Mail: webmaster@lynarstudios.com
  6. * Created: 2020-08-07
  7. * Changed: 2026-06-23
  8. *
  9. * */
  10. #ifndef LS_STD_I_BOXING_HPP
  11. #define LS_STD_I_BOXING_HPP
  12. #include <ls-std/os/dynamic-goal.hpp>
  13. #include <string>
  14. namespace ls::standard::core::interface_type
  15. {
  16. class LS_STD_DYNAMIC_GOAL IBoxing
  17. {
  18. public:
  19. IBoxing();
  20. virtual ~IBoxing();
  21. virtual void parse(const ::std::string &_parseText) = 0;
  22. virtual ::std::string toString() = 0;
  23. };
  24. }
  25. #endif