Z3
ParamsDecRefQueue.java
Go to the documentation of this file.
1
18package com.microsoft.z3;
19
20class ParamsDecRefQueue extends IDecRefQueue<Params> {
21 public ParamsDecRefQueue()
22 {
23 super();
24 }
25
26 @Override
27 protected void decRef(Context ctx, long obj) {
28 Native.paramsDecRef(ctx.nCtx(), obj);
29 }
30}