ort.mpc

来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· MPC 代码 · 共 49 行

MPC
49
字号
// ORT.mpc,v 1.4 2003/12/24 11:17:13 jwillemsen Exp
project(*Gateway) : orbsvcsexe, dynamicinterface, ifr_client {
  avoids += minimum_corba
  source_files {
    GatewayC.cpp
    GatewayS.cpp
    gateway_server.cpp
    Gateway_i.cpp
    Object_Factory_i.cpp
  }
  idl_files {
    Gateway.idl
  }
}

project(*Server) : orbsvcsexe, dynamicinterface, ifr_client {
  exename   = server
  after    += *Gateway
  avoids += minimum_corba
  source_files {
    server.cpp
    GatewayC.cpp
    Gateway_ObjRef_Factory.cpp
    sum_serverC.cpp
    sum_serverS.cpp
    sum_server_i.cpp
    Server_IORInterceptor_ORBInitializer.cpp
    Server_IORInterceptor.cpp
    ObjectReferenceFactoryC.cpp
  }
  idl_files {
    ObjectReferenceFactory.idl
    sum_server.idl
  }
}

project(*Client) : orbsvcsexe, event {
  avoids += minimum_corba
  after += *Server
  source_files {
    client.cpp
    sum_serverC.cpp
  }
  idl_files {
  }
}


⌨️ 快捷键说明

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