Exemplo n.º 1
0
        /// <summary>
        /// Constructor used by EDL File
        /// </summary>
        /// <param name="reader">The binary reader that contains the table data</param>
        /// <param name="table11">Table 11 object for the meter</param>
        /// <param name="tableID">The Table ID Number</param>
        // Revision History
        // MM/DD/YY who Version Issue# Description
        // -------- --- ------- ------ ---------------------------------------
        // 12/12/11 RCG 2.53.20 N/A    Created

        public StdTable14(PSEMBinaryReader reader, StdTable11 table11, ushort tableID)
            : base(tableID, StdTable14.DetermineTableSize(table11))
        {
            State     = TableState.Loaded;
            m_Reader  = reader;
            m_Table11 = table11;
            ParseData();
        }
Exemplo n.º 2
0
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="psem">The PSEM communications object for the current session.</param>
        /// <param name="table11">The actual sources limiting table.</param>
        /// <param name="tableID">The Table ID Number</param>
        // Revision History
        // MM/DD/YY who Version Issue# Description
        // -------- --- ------- ------ ---------------------------------------
        // 12/12/11 RCG 2.53.20 N/A    Created

        public StdTable14(CPSEM psem, StdTable11 table11, ushort tableID)
            : base(psem, tableID, StdTable14.DetermineTableSize(table11))
        {
            m_Table11 = table11;
        }