blob: 6ec2a8d0355c4e255ca39c63e38cc14386eb9ba8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// $Id$
// TAO specific IDL definition of an octet sequence that we use to represent
// Object keys inside the POA.
#ifndef TAO_OBJECTKEY_PIDL
#define TAO_OBJECTKEY_PIDL
module TAO
{
typedef sequence<octet> ObjectKey;
};
#endif /* TAO_OBJECTKEY_PIDL */
|