IEC61970 16v29a - IEC61968 12v08
AssetInfo.h
1 // AssetInfo.h
3 // Implementation of the Class AssetInfo
4 // Original author: T. Kostic
6 
7 #ifndef ASSETINFO_H
8 #define ASSETINFO_H
9 
10 #include <list>
11 
12 #include "IEC61970/Base/Core/PowerSystemResource.h"
13 #include "IEC61970/Base/Core/IdentifiedObject.h"
14 
15 namespace IEC61968
16 {
17  namespace Assets
18  {
29  {
30 
31  public:
32  AssetInfo();
33  virtual ~AssetInfo();
37  std::list<IEC61970::Base::Core::PowerSystemResource*> PowerSystemResources;
38 
39  };
40 
41  }
42 
43 }
44 #endif // ASSETINFO_H
Definition: AssetInfo.h:28
Definition: IdentifiedObject.h:36
Definition: BusbarSectionInfo.h:14
std::list< IEC61970::Base::Core::PowerSystemResource * > PowerSystemResources
Definition: AssetInfo.h:37