internal_monologue.cpp

来自「一个语言识别引擎」· C++ 代码 · 共 35 行

CPP
35
字号
// -*- mode:C++; tab-width:4; c-basic-offset:4; indent-tabs-mode:nil -*-
#include <yarp/os/Network.h>
#include <yarp/os/BufferedPort.h>
#include <yarp/os/Bottle.h>
#include <yarp/os/Time.h>
#include <stdio.h>

using namespace yarp::os;

class Input : public BufferedPort<Bottle> {
public:
    virtual void onRead(Bottle& datum) {
        printf("Got a bottle containing: %s\n", datum.toString().c_str());
    }
};

int main() {
    Network::init();
    Network::setLocalMode(true); // don't actually need a name server

    Input in;
    Port out;
    in.open("/in");
    in.useCallback(); // input should go to onRead() callback
    out.open("/out");

    Network::connect("/out","/in");
    Bottle b("10 10 20");
    out.write(b);
    
    Network::fini();
    return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?