Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef __OPC_UA_INTERFACE_BASE_H__
00012 #define __OPC_UA_INTERFACE_BASE_H__
00013
00014 namespace Common
00015 {
00016
00017 class Interface
00018 {
00019 protected:
00020 Interface(){}
00021 virtual ~Interface(){}
00022
00023 Interface(const Interface&) = delete;
00024 const Interface& operator=(const Interface&) = delete;
00025 };
00026
00027 }
00028
00029 #endif // __OPC_UA_INTERFACE_BASE_H__
00030