Does anyone know how to retrieve the number of generated cuts in the informational callback?

Thanks for your reply.

Actually, implementing the wrapper does not appear to be that straight-forward (or at least not for me).
Following the example of cbgetmipsolution posted by @miles.lubin, I tried to implement the following in the MPBWrapper.jl :

function cbgetmipcutcnt(d::GurobiCallbackData)
@assert d.state == :MIPSol
return cbget_mip_cutcnt(d.cbdata, d.where)
end

function cbgetmipcutcnt(d::GurobiCallbackData,output)
@assert d.state == :MIPSol
return cbget_mip_cutcnt(d.cbdata, d.where, output)
end

but then i get the following error when running my code:

Could you please give any hint or help on how to code the wrapper?
Thanks!