blob: 81eacc638e759ff8ed7b6e03b5e62671fbbe60d0 (
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
|
/**
* @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
#include <InterfaceDef.pidl>
#pragma prefix "omg.org"
module CORBA
{
interface InterfaceDef;
};
#pragma prefix ""
#endif /* TAO_CORBA_INTERFACEDEF_PIDL */
|