Explict Operator Constructor * * @param[in] ctx Context to be used by the operator */
| 46 | * @param[in] ctx Context to be used by the operator |
| 47 | */ |
| 48 | explicit IQueue(IContext *ctx) |
| 49 | { |
| 50 | this->header.ctx = ctx; |
| 51 | this->header.ctx->inc_ref(); |
| 52 | } |
| 53 | /** Destructor */ |
| 54 | virtual ~IQueue() |
| 55 | { |