00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 #pragma once 00012 00013 #include <opc/common/addons_core/addon.h> 00014 #include <opc/ua/server/services_registry.h> 00015 00016 namespace OpcUa 00017 { 00018 namespace Server 00019 { 00020 00021 const char ServicesRegistryAddonId[] = "services_registry"; 00022 00023 class ServicesRegistryFactory : public Common::AddonFactory 00024 { 00025 public: 00026 DEFINE_CLASS_POINTERS(ServicesRegistryFactory); 00027 00028 public: 00029 virtual Common::Addon::UniquePtr CreateAddon(); 00030 }; 00031 00032 } // namespace UaServer 00033 } // namespace OpcUa