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

📄 clsparportdev.h

📁 set of classes for parallel port device access
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -