Go to the documentation of this file.00001 #ifndef SPADIC_FACTORY_H
00002 #define SPADIC_FACTORY_H
00003
00004 #ifndef DABC_Factory
00005 #include "dabc/Factory.h"
00006 #endif
00007
00008 namespace spadic {
00009
00010 class Factory: public dabc::Factory {
00011
00012 public:
00013
00014 Factory(const char* name);
00015
00016 virtual dabc::Application* CreateApplication(const char* classname, dabc::Command cmd);
00017
00018 virtual dabc::DataInput* CreateDataInput(const char* typ);
00019 };
00020
00021 }
00022
00023 #endif
00024