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