Updated Pointer class
parent
e2280fbfa8
commit
d92fd13e14
|
@ -53,11 +53,12 @@ public class Double : Number
|
||||||
|
|
||||||
public class Pointer : Type
|
public class Pointer : Type
|
||||||
{
|
{
|
||||||
/* Datum wdith */
|
/* Data type being pointed to */
|
||||||
private ubyte datumWidth;
|
private Type dataType;
|
||||||
|
|
||||||
this(string name)
|
this(string name, Type dataType)
|
||||||
{
|
{
|
||||||
super(name);
|
super(name);
|
||||||
|
this.dataType = dataType;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue