我有一个将数据发送到python脚本的cpp文件。反过来,这个脚本将数据发送回Cinder,我想知道我是否也可以设置接收器。我使用Cinder附带的OSC块,我有点困惑,因为在Sender示例中构造函数是写的
OSCTestApp::OSCTestApp() : mSender(10000, destinationHost, destinationPort){}
并在Receiver示例中编写构造函数
OSCTestApp::OSCTestApp():mReceiver(10001){}
那你怎么把两者结合起来呢?
由于
答案 0 :(得分:0)
答案非常简单:
OSCTestApp :: OSCTestApp():App(),mReceiver(9000),mSender(8000,destinationHost,destinationPort){}