CIM++ Adapted CIM Codebase
ErpTimeSheet.h
1 // ErpTimeSheet.h
3 // Implementation of the Class ErpTimeSheet
5 
6 #ifndef ERPTIMESHEET_H
7 #define ERPTIMESHEET_H
8 
9 #include <list>
10 
11 #include "IEC61968/InfIEC61968/InfERPSupport/ErpDocument.h"
12 #include "IEC61968/InfIEC61968/InfERPSupport/ErpTimeEntry.h"
13 
14 namespace IEC61968
15 {
16  namespace InfIEC61968
17  {
18  namespace InfERPSupport
19  {
25  {
26 
27  public:
28  ErpTimeSheet();
29  virtual ~ErpTimeSheet();
30  std::list<IEC61968::InfIEC61968::InfERPSupport::ErpTimeEntry*> ErpTimeEntries;
31 
32  };
33 
34  }
35 
36  }
37 
38 }
39 #endif // ERPTIMESHEET_H
Definition: BusbarSectionInfo.h:14