progpib/pty-gpib-emulator/c++/Device.h

24 lines
303 B
C
Raw Normal View History

2020-09-09 00:17:31 -05:00
#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