Esempio n. 1
0
 public SCCObjectIdentifierValue(ObjectIdentifierValue o, ITree antlr)
     : base(o, antlr)
 {
 }
Esempio n. 2
0
 public override ObjectIdentifierValue CreateObjectIdentifierValue(ObjectIdentifierValue o, Antlr.Runtime.Tree.ITree antlr)
 {
     return new SCCObjectIdentifierValue(o, antlr);
 }
Esempio n. 3
0
 public ObjectIdentifierValue(ObjectIdentifierValue o, ITree antlr)
 {
     m_TypeID = Asn1Value.TypeID.OBJECT_IDENTIFIER;
     m_module = o.m_module;
     antlrNode = antlr;
     m_type = o.m_type;
     m_components = o.m_components;
 }