00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef RGEDDEIHOSTPROCESSORFORWARDER_H
00011 #define RGEDDEIHOSTPROCESSORFORWARDER_H
00012
00013 #include <string>
00014 using namespace std;
00015
00016 #ifdef __GEDDEI_BUILD
00017 #include "commcodes.h"
00018 #include "processorforwarder.h"
00019 #else
00020 #include <rgeddei/commcodes.h>
00021 #include <geddei/processorforwarder.h>
00022 #endif
00023 using namespace Geddei;
00024
00025 namespace rGeddei
00026 {
00027
00036 class HostProcessorForwarder: public ProcessorForwarder
00037 {
00038 virtual Processor *lookup(uint key, const QString &name);
00039
00040 public:
00041 HostProcessorForwarder(const uint port = RGEDDEI_PORT) : ProcessorForwarder(port) {}
00042 };
00043
00044 };
00045
00046 #endif