blob: 71e0f59d05ecbdcbaaf729f958426990bc257c53 (
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
|
//
// $Id$
//
#include "orb.idl"
#pragma prefix "omg.org"
module RTCORBA
{
// = TITLE
// The RTCORBA module, as specified in orbos/99-02-12, and
// corrected in orbos/99-03-29
//
// = DESCRIPTION
// This file is used to generate the objects and types in the
// RTCORBA module.
typedef short Priority;
interface Current : CORBA::Current {
attribute Priority the_priority;
};
};
#pragma prefix ""
|