CIM++ Adapted CIM Codebase
DiagramStyle.h
1 // DiagramStyle.h
3 // Implementation of the Class DiagramStyle
4 // Original author: SELAOST1
6 
7 #ifndef DIAGRAMSTYLE_H
8 #define DIAGRAMSTYLE_H
9 
10 #include <list>
11 
12 #include "IEC61970/Base/Core/IdentifiedObject.h"
13 #include "IEC61970/Base/DiagramLayout/Diagram.h"
14 
15 namespace IEC61970
16 {
17  namespace Base
18  {
19  namespace DiagramLayout
20  {
27  {
28 
29  public:
30  DiagramStyle();
31  virtual ~DiagramStyle();
35  std::list<IEC61970::Base::DiagramLayout::Diagram*> Diagram;
36 
37  };
38 
39  }
40 
41  }
42 
43 }
44 #endif // DIAGRAMSTYLE_H
Definition: AuxiliaryEquipment.h:13
Definition: DiagramStyle.h:26
std::list< IEC61970::Base::DiagramLayout::Diagram * > Diagram
Definition: DiagramStyle.h:35
Definition: IdentifiedObject.h:36