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