using System.Diagnostics.CodeAnalysis;
namespace OpenCvSharp;
///
/// Template class for smart reference-counting pointers
///
public abstract class Ptr : DisposableCvObject
{
///
/// Constructor
///
///
protected Ptr(IntPtr ptr)
{
this.ptr = ptr;
}
///
/// Returns Ptr<T>.get() pointer
///
[SuppressMessage("Microsoft.Design", "CA1716: Identifiers should not match keywords")]
public abstract IntPtr Get();
}