summaryrefslogtreecommitdiff
path: root/tao/Object_Key.pidl
blob: 46f5aa85a6b45a91ace2c66aa917be531917b674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// $Id$

// TAO specific IDL definition of an octet sequence that we use to represent
// Object keys inside the POA.
//   This file is used to generate the code in Object_KeyC.*
//   The command used to generate code is:
//
//     tao_idl
//        -o orig -St -Gp -Gd -Sci
//          -Wb,export_macro=TAO_Export
//          -Wb,export_macro="tao/TAO_Export"
//          -Wb,pre_include="ace/pre.h"
//          -Wb,post_include="ace/post.h"
//          Object_Key.pidl
//
// After generation the file diffs/Object_Key.diff must be used to manually
// patch this file

#ifndef TAO_OBJECTKEY_PIDL
#define TAO_OBJECTKEY_PIDL

#include "tao/OctetSeq.pidl"

module TAO
{
  typedef CORBA::OctetSeq ObjectKey;
};

#endif /* TAO_OBJECTKEY_PIDL */