123456789101112131415161718 |
- #pragma once
- #include "Typ.h"
- #include "Sichtbarkeit.h"
- #include "Text.h"
- #include "Feld.h"
- namespace Framework
- {
- class Funktion
- {
- Typ typ;
- Sichtbarkeit sichtbarkeit;
- std::vector<std::pair<Text, Text>> annotations;
- std::vector<Feld> parameter;
- };
- };
|