client.cc

来自「支持组件模型CCM的开源中间件-mico」· CC 代码 · 共 45 行

CC
45
字号
#include "hello.h"#ifdef HAVE_UNISTD_H#include <unistd.h>#endif#ifdef _WINDOWS#include <direct.h>#endifusing namespace std;intmain (int argc, char *argv[]){  CORBA::ORB_var orb = CORBA::ORB_init (argc, argv);  cerr << "ORB init" << endl;  /*   * IOR is in hello.ref in the local directory   */  char pwd[256], uri[300];  sprintf (uri, "file://%s/hello.ref", getcwd(pwd, 256));  /*   * Bind to Hello World server   */  CORBA::Object_var obj = orb->string_to_object (uri);  cerr << "orb->string_to_object" << endl;  HelloWorld_var hello = HelloWorld::_narrow (obj);  cerr << "narrow" << endl;  if (CORBA::is_nil (hello)) {    printf ("oops: could not locate HelloWorld server\n");    exit (1);  }  cerr << "starting invocation" << endl;  hello->hello ();  cerr << "done" << endl;  return 0;}

⌨️ 快捷键说明

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