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