Ejemplo n.º 1
0
 public VHDLPhysicalValue(VHDLPhysicalType <T> physicalType)
     : base(physicalType)
 {
     this.physicalType = physicalType;
     init(0);
 }
Ejemplo n.º 2
0
 public VHDLPhysicalValue(VHDLPhysicalType <T> physicalType, VHDLPhysicalValue <T> value)
     : base(physicalType)
 {
     this.physicalType = physicalType;
     init(value.mValue);
 }
Ejemplo n.º 3
0
 public VHDLPhysicalValue(VHDLPhysicalType <T> physicalType, long value, string unitName)
     : base(physicalType)
 {
     this.physicalType = physicalType;
     init(value, unitName);
 }