00001 #ifndef EVENT_LOOP_DIRECT_WORKER_HH
00002 #define EVENT_LOOP_DIRECT_WORKER_HH
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00016
00017
00018
00019 #include <EventLoop/Global.h>
00020
00021 #include <string>
00022 #include <EventLoop/Worker.h>
00023 #include <SampleHandler/SamplePtr.h>
00024
00025 namespace EL
00026 {
00027 class DirectWorker : public Worker
00028 {
00029
00030
00031
00032
00035 public:
00036 void testInvariant () const;
00037
00038
00044 public:
00045 DirectWorker (const SH::SamplePtr& sample, TList *output,
00046 const Job& job, const std::string& location,
00047 const SH::MetaObject *meta);
00048
00049
00054 public:
00055 void run ();
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00070 private:
00071 SH::SamplePtr m_sample;
00072
00074 private:
00075 std::string m_location;
00076 };
00077 }
00078
00079 #endif