⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ser_cont_el.h

📁 电能质量交换格式转换库
💻 H
字号:
//  File name:          $Workfile: ser_cont_el.h $
//  Last modified:      $Modtime: 11/21/00 5:20p $
//  Last modified by:   $Author: Bill $
//  
//  VCS archive path:   $Archive: /Hank/DMM/FirmWare/Level3/ObDatMgr/ser_cont_el.h $
//  VCS revision:       $Revision: 5 $ 

class CPQDIF_E_Collection;

class PQController
    {
    public:
        PQController();
        virtual ~PQController();

        virtual void ParseRecord
            ( 
            BYTE *                  buffer, 
            SIZE4                   size, 
            CPQDIF_E_Collection *   pcollMain
            );

        //  Routines to add specific PQDIF elements

        //  If return value is TRUE, the Iterator object
        //  will continue iterating through the elements
        //  in the collection. If FALSE, the collection
        //  will be skipped.
        virtual CPQDIF_E_Collection * acceptCollection
            ( 
            CPQDIF_E_Collection *   pcoll,
            int                     index,
            const GUID&             tag
            );
        virtual CPQDIF_E_Scalar * acceptScalar
            ( 
            CPQDIF_E_Collection *   pcoll,
            int                     index,
            const GUID&             tag, 
            long                    typePhysical,
            void *                  pdata
            );
        virtual CPQDIF_E_Vector * acceptVector
            ( 
            CPQDIF_E_Collection *   pcoll,
            int                     index,
            const GUID&             tag, 
            long                    typePhysical,
            c_vector *              pvector,
            void *                  pdata
            );

        static bool decodeValue
            ( 
            long        typePhysical,
            void *      pdata,
            PQDIFValue& value
            );

    protected:
        
    };

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -