PageRenderTime 38ms CodeModel.GetById 15ms app.highlight 6ms RepoModel.GetById 1ms app.codeStats 0ms

/strigi-0.7.7/libstreamanalyzer/plugins/throughplugins/dummy.cpp

#
C++ | 17 lines | 12 code | 4 blank | 1 comment | 0 complexity | f44448593c15b7ae5f125373d38dabc0 MD5 | raw file
Possible License(s): LGPL-2.0
 1#include <strigi/streamthroughanalyzer.h>
 2#include <strigi/analyzerplugin.h>
 3
 4#include <list>
 5
 6using namespace Strigi;
 7
 8// Dummy factory
 9class Factory : public AnalyzerFactoryFactory {
10public:
11    std::list<StreamThroughAnalyzerFactory*>
12    streamThroughAnalyzerFactories() const {
13        return std::list<StreamThroughAnalyzerFactory*>();
14    }
15};
16
17STRIGI_ANALYZER_FACTORY(Factory)