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