IEC61970 16v29a - IEC61968 12v08
AssetContainer.h
1 // AssetContainer.h
3 // Implementation of the Class AssetContainer
5 
6 #ifndef ASSETCONTAINER_H
7 #define ASSETCONTAINER_H
8 
9 #include <list>
10 
11 #include "IEC61968/Assets/Seal.h"
12 #include "IEC61968/Assets/Asset.h"
13 
14 namespace IEC61968
15 {
16  namespace Assets
17  {
23  {
24 
25  public:
27  virtual ~AssetContainer();
31  std::list<IEC61968::Assets::Seal*> Seals;
32 
33  };
34 
35  }
36 
37 }
38 #endif // ASSETCONTAINER_H
Definition: AssetContainer.h:22
Definition: Asset.h:45
Definition: BusbarSectionInfo.h:14
std::list< IEC61968::Assets::Seal * > Seals
Definition: AssetContainer.h:31