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