/*----- PROTECTED REGION ID(TestDevice::ClassFactory.cpp) ENABLED START -----*/ //============================================================================= // // file : ClassFactory.cpp // // description : C++ source for the class_factory method of the DServer // device class. This method is responsible for the creation of // all class singleton for a device server. It is called // at device server startup. // // $Author: graziano $ // // //============================================================================= // This file is generated by POGO // (Program Obviously used to Generate tango Object) //============================================================================= #include <tango.h> #include <TestDeviceClass.h> // Add class header files if needed /** * Create TestDevice Class singleton and store it in DServer object. */ void Tango::DServer::class_factory() { // Add method class init if needed add_class(TestDevice_ns::TestDeviceClass::init("TestDevice")); } /*----- PROTECTED REGION END -----*/