Constantin Ziesche | 02817f1 | 2020-08-04 21:40:43 +0200 | [diff] [blame^] | 1 | #ifndef BASYX_API_V2_SDK_ICONCEPTDICTIONARY_H |
| 2 | #define BASYX_API_V2_SDK_ICONCEPTDICTIONARY_H |
| 3 | |
| 4 | #include <BaSyx/submodel/api_v2/parts/IConceptDescription.h> |
| 5 | |
| 6 | namespace basyx { |
| 7 | namespace submodel { |
| 8 | namespace api { |
| 9 | |
| 10 | class IConceptDictionary |
| 11 | : public virtual IReferable |
| 12 | { |
| 13 | public: |
| 14 | virtual ~IConceptDictionary() = 0; |
| 15 | |
| 16 | virtual const IElementContainer<IConceptDescription> & getConceptDescriptions() const = 0; |
| 17 | }; |
| 18 | |
| 19 | inline IConceptDictionary::~IConceptDictionary() = default; |
| 20 | |
| 21 | } |
| 22 | } |
| 23 | } |
| 24 | #endif //BASYX_API_V2_SDK_ICONCEPTDICTIONARY_H |