SimpleOperationPool.h 837 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * @file SimpleOperationPool.h
  3. * @brief pool for simple feature extraction methods
  4. * @author Sven Sickert
  5. * @date 10/09/2015
  6. */
  7. #ifndef SimpleOperationPoolINCLUDE
  8. #define SimpleOperationPoolINCLUDE
  9. #include "OperationPool.h"
  10. namespace OBJREC {
  11. class SimpleOperationPool : public OperationPool
  12. {
  13. protected:
  14. bool contextMode;
  15. public:
  16. /** simple constructor */
  17. SimpleOperationPool ( );
  18. SimpleOperationPool ( const NICE::Config *_config );
  19. /** extended constructor */
  20. SimpleOperationPool ( const NICE::Config *_config,
  21. const bool _contextMode);
  22. /** simple destructor */
  23. virtual ~SimpleOperationPool ( );
  24. /** get operations */
  25. virtual void getOperations ( std::string confString );
  26. };
  27. } //namespace
  28. #endif