示例#1
0
 internal ImaqdxUInt32Attribute(ImaqdxSession session, ImaqdxAttributeInformation attributeInfo)
     : base(session, attributeInfo)
 {
     _numericAttribute = new ImaqdxNumericAttribute <uint>(this);
 }
示例#2
0
 internal ImaqdxInt64Attribute(ImaqdxSession session, ImaqdxAttributeInformation attributeInfo)
     : base(session, attributeInfo)
 {
     _numericAttribute = new ImaqdxNumericAttribute <long>(this);
 }
示例#3
0
 internal ImaqdxDoubleAttribute(ImaqdxSession session, ImaqdxAttributeInformation attributeInfo)
     : base(session, attributeInfo)
 {
     _numericAttribute = new ImaqdxNumericAttribute <double>(this);
 }