12345678910111213141516171819202122232425262728293031 |
- #include "OperationPool.h"
- using namespace OBJREC;
- OperationPool::OperationPool ( )
- {
- config = NULL;
- }
- OperationPool::OperationPool ( const NICE::Config *_config )
- {
- config = _config;
- }
- OperationPool::~OperationPool ( )
- {
- }
- void OperationPool::clear ( )
- {
- while ( !pool.empty() )
- pool.pop_back();
- }
|