示例#1
0
 /// <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;
 }
示例#2
0
        /// <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();
        }