IBoxing.hpp 580 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: 2023-05-17
  7. *
  8. * */
  9. #ifndef LS_STD_I_BOXING_HPP
  10. #define LS_STD_I_BOXING_HPP
  11. #include <ls-std/os/dynamic-goal.hpp>
  12. #include <string>
  13. namespace ls::std::core::interface_type
  14. {
  15. class LS_STD_DYNAMIC_GOAL IBoxing
  16. {
  17. public:
  18. IBoxing();
  19. virtual ~IBoxing();
  20. virtual void parse(const ::std::string &_parseText) = 0;
  21. virtual ::std::string toString() = 0;
  22. };
  23. }
  24. #endif