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