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