clsparportdev.h

来自「set of classes for parallel port device 」· C头文件 代码 · 共 25 行

H
25
字号
#ifndef CLSPARPORTDEV_H#define CLSPARPORTDEV_H#include "clsepp19.h"#include <map>#include <string>class clsParportDev{    public:        static  clsEpp19*   Instance    ( const std::string& rDeviceName = "" );        static  void        Destroy     ( const std::string& rDeviceName = "" );        static  int         SetDefault  ( const std::string& rDeviceName );    private:        clsParportDev(){}        clsParportDev(const clsParportDev& ){}        ~clsParportDev(){}        static  std::map<std::string,clsEpp19*> m_mapDevices;        static  clsEpp19*                       m_pDefaultDevice;};#endif

⌨️ 快捷键说明

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