12345678910111213141516171819 |
- #pragma once
- #include <vector>
- #include "Sichtbarkeit.h"
- #include "Text.h"
- #include "Typ.h"
- namespace Framework
- {
- class Feld
- {
- private:
- Text name;
- Typ typ;
- Sichtbarkeit sichtbarkeit;
- std::vector<std::pair<Text, Text>> annotations;
- };
- } // namespace Framework
|