14 lines
214 B
C++
14 lines
214 B
C++
|
|
||
|
#include "Device.h"
|
||
|
#include <string>
|
||
|
#include <iostream>
|
||
|
|
||
|
|
||
|
string Device::handleCMD(Interface *fpl,
|
||
|
string cmd,
|
||
|
vector<string> *args) {
|
||
|
std::cout << "$$ Device: " << cmd << std::endl;
|
||
|
|
||
|
return "";
|
||
|
}
|