00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 #ifndef OPC_UA_VARIABLE_ACCESS_LEVEL_H_ 00012 #define OPC_UA_VARIABLE_ACCESS_LEVEL_H_ 00013 00014 #include <stdint.h> 00015 00016 namespace OpcUa 00017 { 00018 enum class VariableAccessLevel : uint8_t 00019 { 00020 CurrentRead = 1, 00021 CurrentWrite = 2, 00022 HistoryRead = 4, 00023 HistoryWrite = 8, 00024 SemanticChange = 16, 00025 }; 00026 } 00027 00028 #endif /* OPC_UA_VARIABLE_ACCESS_LEVEL_H_ */