CIM++ Adapted CIM Codebase
AssetLocationHazard.h
1 // AssetLocationHazard.h
3 // Implementation of the Class AssetLocationHazard
4 // Original author: T. Kostic
6 
7 #ifndef ASSETLOCATIONHAZARD_H
8 #define ASSETLOCATIONHAZARD_H
9 
10 #include <list>
11 
12 #include "IEC61968/Common/Location.h"
13 #include "IEC61968/Common/Hazard.h"
14 
15 namespace IEC61968
16 {
17  namespace Assets
18  {
26  {
27 
28  public:
30  virtual ~AssetLocationHazard();
34  std::list<IEC61968::Common::Location*> Locations;
35 
36  };
37 
38  }
39 
40 }
41 #endif // ASSETLOCATIONHAZARD_H
std::list< IEC61968::Common::Location * > Locations
Definition: AssetLocationHazard.h:34
Definition: Hazard.h:21
Definition: BusbarSectionInfo.h:14
Definition: AssetLocationHazard.h:25