IEC61970 16v29a - IEC61968 12v08
OutageSchedule.h
1 // OutageSchedule.h
3 // Implementation of the Class OutageSchedule
4 // Original author: T. Kostic
6 
7 #ifndef OUTAGESCHEDULE_H
8 #define OUTAGESCHEDULE_H
9 
10 #include <list>
11 
12 #include "IEC61968/Common/Document.h"
13 #include "IEC61968/Operations/Outage.h"
14 
15 namespace IEC61968
16 {
17  namespace Operations
18  {
25  {
26 
27  public:
29  virtual ~OutageSchedule();
33  std::list<IEC61968::Operations::Outage*> PlannedOutages;
34 
35  };
36 
37  }
38 
39 }
40 #endif // OUTAGESCHEDULE_H
std::list< IEC61968::Operations::Outage * > PlannedOutages
Definition: OutageSchedule.h:33
Definition: Document.h:27
Definition: OutageSchedule.h:24
Definition: BusbarSectionInfo.h:14