fakeface.cpp

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

CPP
36
字号
// -*- mode:C++; tab-width:4; c-basic-offset:4; indent-tabs-mode:nil -*-

/*
 * Copyright (C) 2006 Paul Fitzpatrick
 * CopyPolicy: Released under the terms of the GNU GPL v2.0.
 *
 */


#include <yarp/FakeFace.h>
#include <yarp/Logger.h>
#include <yarp/Protocol.h>
#include <yarp/FakeTwoWayStream.h>

using namespace yarp;

static Logger fakeFaceLog("FakeFace", Logger::get());

void FakeFace::open(const Address& address) {
    // happy to open without fuss
}

void FakeFace::close() {
}

InputProtocol *FakeFace::read() {
    fakeFaceLog.fail("not yet implemented");
    return NULL;
}

OutputProtocol *FakeFace::write(const Address& address) {
    Protocol *prot = new Protocol(new FakeTwoWayStream());
    return prot;
}

⌨️ 快捷键说明

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