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