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