#pragma once #include "Field.h" #include "Visibility.h" #include "Text.h" #include "Type.h" namespace Framework { class Function { Type typ; Sichtbarkeit sichtbarkeit; std::vector> annotations; std::vector parameter; }; }; // namespace Framework