File: anyExample.idl

package info (click to toggle)
omniorb4 4.0.6-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 11,948 kB
  • ctags: 18,509
  • sloc: cpp: 87,721; ansic: 16,132; python: 10,429; sh: 2,725; yacc: 2,230; lex: 667; perl: 383; xml: 361; makefile: 76; tcl: 18
file content (17 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __ANYEXAMPLE_IDL__
#define __ANYEXAMPLE_IDL__

// Note that when compiling this IDL with omniidl2, the -a command-line flag
// should be specified.

struct testStruct {
  long l;
  short s;
};


interface anyExample {
  any testOp(in any mesg);
};

#endif