SectionPairRowValue.hpp 744 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-10
  6. * Changed: 2023-02-11
  7. *
  8. * */
  9. #ifndef LS_STD_SECTION_PAIR_ROW_VALUE_HPP
  10. #define LS_STD_SECTION_PAIR_ROW_VALUE_HPP
  11. #include <ls-std/io/section-pair/SectionPairRowEnumType.hpp>
  12. #include <ls-std/os/dynamic-goal.hpp>
  13. namespace ls::std::io
  14. {
  15. class LS_STD_DYNAMIC_GOAL SectionPairRowValue
  16. {
  17. public:
  18. explicit SectionPairRowValue(const ls::std::io::SectionPairRowEnumType &_type);
  19. virtual ~SectionPairRowValue();
  20. virtual ls::std::io::SectionPairRowEnumType getType() = 0;
  21. protected:
  22. ls::std::io::SectionPairRowEnumType type{};
  23. };
  24. }
  25. #endif