blob: acd5610ea253b310222ae9b1a6ae4c2c316601ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// $Id$
// TAO specific IDL definition of an octet sequence that we use to represent
// Object keys inside the POA.
// This file was used to generate the code in Object_KeyC.*
// The command used to generate code is:
//
// tao_idl
// -o orig -Ge 1 -St -GT -Gp -Gd -Sc
// -Wb,export_macro=TAO_Export
// -Wb,pre_include="ace/pre.h"
// -Wb,post_include="ace/post.h"
// Object_Key.pidl
//
module TAO
{
typedef sequence<octet> ObjectKey;
};
|