Package it.unich.jgmp.nativelib
Class SizeTByReference
- java.lang.Object
-
- com.sun.jna.PointerType
-
- com.sun.jna.ptr.ByReference
-
- it.unich.jgmp.nativelib.SizeTByReference
-
- All Implemented Interfaces:
com.sun.jna.NativeMapped
public class SizeTByReference extends com.sun.jna.ptr.ByReference
A reference to the nativesize_t
data type.
-
-
Constructor Summary
Constructors Constructor Description SizeTByReference()
Create a reference to a newly allocatedsize_t
object.SizeTByReference(SizeT value)
Create a reference to a newly allocatedsize_t
object, which is initialized withvalue
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SizeT
getValue()
Get the value ofsize_t
object pointed by this reference.void
setValue(SizeT value)
Change the value of thesize_t
object pointed by this reference.
-
-
-
Constructor Detail
-
SizeTByReference
public SizeTByReference()
Create a reference to a newly allocatedsize_t
object.
-
SizeTByReference
public SizeTByReference(SizeT value)
Create a reference to a newly allocatedsize_t
object, which is initialized withvalue
.
-
-