/// <summary> /// Constructor, only factory can instantiates nodes. /// </summary> /// <param name="nodeId">[in] The id of the node.</param> /// <param name="factory">[in] Poiter to the Factory the node belongs to.</param> public TypeFormerPointer(uint nodeId, Factory factory) : base(nodeId, factory) { m_pointerKind = Types.PointerKind.ptkPointer; }
/// <summary> /// Loads the node. /// </summary> /// <param name="io">[in] The node is read from io.</param> /// <exception cref="Columbus.ColumbusIOException">Throws ColumbusIOException if there is something wrong with the file.</exception> public override void load(IO binIo) { base.load(binIo); m_pointerKind = (Types.PointerKind)binIo.readUByte1(); }