#pragma once

#include "Feld.h"
#include "Sichtbarkeit.h"
#include "Text.h"
#include "Typ.h"

namespace Framework
{
    class Funktion
    {
        Typ typ;
        Sichtbarkeit sichtbarkeit;
        std::vector<std::pair<Text, Text>> annotations;
        std::vector<Feld> parameter;
    };
}; // namespace Framework