| Interstage Application Server アプリケーション作成ガイド (CORBAサービス編) |
目次
索引
![]()
|
| 第1部 アプリケーション開発(基本編) | > 第3章 アプリケーションの開発(C言語) | > 3.1 アプリケーションの開発手順 |
サーバアプリケーションが提供するインタフェースを定義するために、IDLファイルを作成します。IDLファイルの書式については“IDL定義”を参照してください。

module ODdemo{
interface calculator{
exception ZEROPARAM {};
struct result {
long add_result;
long subtract_result;
long multiple_result;
float divide_result;
};
result calculate( in long a, in long b )
raises( ZEROPARAM );
};
}; |
目次
索引
![]()
|