/strigi-0.7.7/libstreamanalyzer/plugins/throughplugins/dummy.cpp
# · C++ · 17 lines · 12 code · 4 blank · 1 comment · 0 complexity · f44448593c15b7ae5f125373d38dabc0 MD5 · raw file
- #include <strigi/streamthroughanalyzer.h>
- #include <strigi/analyzerplugin.h>
- #include <list>
- using namespace Strigi;
- // Dummy factory
- class Factory : public AnalyzerFactoryFactory {
- public:
- std::list<StreamThroughAnalyzerFactory*>
- streamThroughAnalyzerFactories() const {
- return std::list<StreamThroughAnalyzerFactory*>();
- }
- };
- STRIGI_ANALYZER_FACTORY(Factory)