Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef XML_ADDRESS_SPACE_PROCESSOR_H_
00013 #define XML_ADDRESS_SPACE_PROCESSOR_H_
00014
00015 #include <opc/common/interface.h>
00016 #include <libxml/tree.h>
00017
00018 namespace OpcUa
00019 {
00020 namespace Internal
00021 {
00022
00023 class XmlProcessor : private Common::Interface
00024 {
00025 public:
00026 virtual void Process(xmlNode& node) = 0;
00027 };
00028
00029 }
00030
00031 }
00032
00033 #endif