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