IEC61970 17v23
URI.h
1 // URI.h
3 // Implementation of the Class URI
4 // Original author: SELAOST1
6 
7 #ifndef URI_H
8 #define URI_H
9 #include "BaseClass.h"
10 
11 namespace IEC61970
12 {
13  namespace Part552Header
14  {
19  class URI : public BaseClass
20  {
21 
22  public:
23  URI();
24  virtual ~URI();
25 
26  };
27 
28  }
29 
30 }
31 #endif // URI_H
Definition: AuxiliaryEquipment.h:13
Definition: BaseClass.h:6
Definition: URI.h:19