typedef.idl
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· IDL 代码 · 共 48 行
IDL
48 行
// typedef.idl,v 1.5 2001/11/05 19:12:41 parsons Exp
// ============================================================================
//
// = LIBRARY
// TAO/tests/IDL_Test
//
// = FILENAME
// typedef.idl
//
// = DESCRIPTION
// This file contains examples of IDL code that has
// caused problems in the past for the TAO IDL
// compiler. This test is to make sure the problems
// stay fixed.
//
// = AUTHORS
// Jeff Parsons <parsons@cs.wustl.edu> and TAO users.
//
// ============================================================================
// Must keep unaliasing until all levels of typedef
// are removed.
// This is also a test of arrays of arrays. Once
// upon a time, the generated CDR operators of such
// animals wouldn't compile on all platforms.
typedef char TAO_A5[5];
typedef TAO_A5 TAO_C5;
typedef TAO_C5 TAO_G5;
typedef TAO_G5 TAO_J5;
typedef TAO_J5 TAO_M5[5];
typedef TAO_M5 TAO_R5;
typedef TAO_R5 TAO_V5;
typedef TAO_V5 TAO_Z5[5];
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?