3 #include "ofConstants.h"
11 #if __cplusplus<201103L
16 using std::tr1::static_pointer_cast;
17 using std::tr1::dynamic_pointer_cast;
18 using std::tr1::const_pointer_cast;
19 using std::tr1::__dynamic_cast_tag;
32 ofSerialDeviceInfo(std::string devicePathIn, std::string deviceNameIn,
int deviceIDIn){
33 devicePath = devicePathIn;
34 deviceName = deviceNameIn;
35 deviceID = deviceIDIn;
39 deviceName =
"device undefined";
43 std::string getDevicePath(){
47 std::string getDeviceName(){
56 std::string devicePath;
57 std::string deviceName;
Definition: ofSerial.h:27