PageRenderTime 48ms CodeModel.GetById 20ms 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. #include <list>
  4. using namespace Strigi;
  5. // Dummy factory
  6. class Factory : public AnalyzerFactoryFactory {
  7. public:
  8. std::list<StreamThroughAnalyzerFactory*>
  9. streamThroughAnalyzerFactories() const {
  10. return std::list<StreamThroughAnalyzerFactory*>();
  11. }
  12. };
  13. STRIGI_ANALYZER_FACTORY(Factory)