12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef SimpleOperationPoolINCLUDE
- #define SimpleOperationPoolINCLUDE
- #include "OperationPool.h"
- namespace OBJREC {
- class SimpleOperationPool : public OperationPool
- {
- protected:
- bool contextMode;
- public:
-
- SimpleOperationPool ( );
- SimpleOperationPool ( const NICE::Config *_config );
-
- SimpleOperationPool ( const NICE::Config *_config,
- const bool _contextMode);
-
- virtual ~SimpleOperationPool ( );
-
- virtual void getOperations ( std::string confString );
- };
- }
- #endif
|