📄 testi.cpp
字号:
// **********************************************************************//// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.//// This copy of Ice is licensed to you under the terms described in the// ICE_LICENSE file included in this distribution.//// **********************************************************************#include <Ice/Ice.h>#include <TestI.h>std::stringAI::callA(const Ice::Current&){ return "A";}std::stringBI::callB(const Ice::Current&){ return "B";}std::stringCI::callC(const Ice::Current&){ return "C";}std::stringDI::callD(const Ice::Current&){ return "D";}std::stringEI::callE(const Ice::Current&){ return "E";}std::stringFI::callF(const Ice::Current&){ return "F";}GI::GI(const Ice::CommunicatorPtr& communicator) : _communicator(communicator){}voidGI::shutdown(const Ice::Current&){ _communicator->shutdown();}std::stringGI::callG(const Ice::Current&){ return "G";}HI::HI(const Ice::CommunicatorPtr& communicator) : GI(communicator){}std::stringHI::callH(const Ice::Current&){ return "H";}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -