Feld.h 309 B

12345678910111213141516171819
  1. #pragma once
  2. #include <vector>
  3. #include "Sichtbarkeit.h"
  4. #include "Text.h"
  5. #include "Typ.h"
  6. namespace Framework
  7. {
  8. class Feld
  9. {
  10. private:
  11. Text name;
  12. Typ typ;
  13. Sichtbarkeit sichtbarkeit;
  14. std::vector<std::pair<Text, Text>> annotations;
  15. };
  16. } // namespace Framework