IBoxing.hpp 621 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: 2022-05-14
  7. *
  8. * */
  9. #ifndef LS_STD_I_BOXING_HPP
  10. #define LS_STD_I_BOXING_HPP
  11. #include <string>
  12. // TODO: add "interface" namespace
  13. namespace ls
  14. {
  15. namespace std
  16. {
  17. namespace core
  18. {
  19. class IBoxing
  20. {
  21. public:
  22. IBoxing() = default;
  23. ~IBoxing() = default;
  24. virtual void parse(::std::string _parseText) = 0;
  25. virtual ::std::string toString() = 0;
  26. };
  27. }
  28. }
  29. }
  30. #endif