blob: 63eb842b3195c08650d5465d0140cac60f8d43e2 (
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
|
/**
* @file InterfaceDef.pidl
*
* $Id$
*
* @brief Define the CORBA::InterfaceDef type.
*
* This file is used to provide a definition for the CORBA::InterfaceDef
* type, it is *NOT* pre-compiled, but included from other
* pre-compiled files.
*
*/
#ifndef TAO_CORBA_INTERFACEDEF_PIDL
#define TAO_CORBA_INTERFACEDEF_PIDL
#pragma prefix "omg.org"
module CORBA
{
interface InterfaceDef;
};
#pragma prefix ""
#endif /* TAO_CORBA_INTERFACEDEF_PIDL */
|