add pty-gpib-emulator from github
This commit is contained in:
23
pty-gpib-emulator/c++/Device.h
Normal file
23
pty-gpib-emulator/c++/Device.h
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
#ifndef DEVICE
|
||||
#define DEVICE
|
||||
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
|
||||
class Device;
|
||||
|
||||
#include "PTY_Interface.h"
|
||||
#include <vector>
|
||||
using namespace std;
|
||||
|
||||
class Device {
|
||||
public:
|
||||
virtual string handleCMD(Interface *fpl,
|
||||
string cmd,
|
||||
vector<string> *args) {
|
||||
return "";
|
||||
} /**/
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user