00001 #ifndef _IT_BUS_PDK_BUS_PLUGIN_FACTORY_H_
00002 #define _IT_BUS_PDK_BUS_PLUGIN_FACTORY_H_
00003
00004
00005
00006
00007 #include <it_bus/api_defines.h>
00008 #include <it_bus/bus.h>
00009
00010 namespace IT_Bus
00011 {
00012 class BusPlugIn;
00013
00018 class IT_BUS_API BusPlugInFactory
00019 {
00020 public:
00024 BusPlugInFactory();
00025
00029 virtual
00030 ~BusPlugInFactory();
00031
00039 virtual BusPlugIn*
00040 create_bus_plugin(
00041 Bus_ptr bus
00042 ) throw((Exception)) = 0;
00043
00049 virtual void
00050 destroy_bus_plugin(
00051 BusPlugIn* bus_plugin
00052 ) = 0;
00053
00054 private:
00055 BusPlugInFactory(
00056 const BusPlugInFactory&
00057 );
00058
00059 BusPlugInFactory&
00060 operator=(
00061 const BusPlugInFactory&
00062 );
00063 };
00064 }
00065
00066 #endif