add pty-gpib-emulator from github

This commit is contained in:
2020-09-09 05:17:31 +00:00
parent 63554da593
commit 3fe71a6f3b
22 changed files with 997 additions and 0 deletions

View 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