00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef SEMAINE_COMPONENTS_DUMMY_DUMMYFEATUREEXTRACTOR_H
00011 #define SEMAINE_COMPONENTS_DUMMY_DUMMYFEATUREEXTRACTOR_H
00012
00013 #include <semaine/config.h>
00014
00015 #include <cms/CMSException.h>
00016
00017 #include <semaine/components/Component.h>
00018 #include <semaine/cms/sender/FeatureSender.h>
00019
00020 using namespace cms;
00021 using namespace semaine::components;
00022 using namespace semaine::cms::sender;
00023
00024 namespace semaine {
00025 namespace components {
00026 namespace dummy {
00027
00028 class DummyFeatureExtractor : public Component
00029 {
00030 public:
00031 DummyFeatureExtractor() throw (CMSException);
00032 virtual ~DummyFeatureExtractor();
00033
00034 protected:
00035 virtual void act() throw (CMSException);
00036 virtual void customStartIO() throw (CMSException);
00037
00038
00039 private:
00040 FeatureSender * featureSender;
00041
00042 };
00043
00044 }
00045 }
00046 }
00047
00048
00049 #endif
00050