~ubuntu-branches/ubuntu/natty/orbit2/natty

« back to all changes in this revision

Viewing changes to include/orbit/orb-core/corba-policy-type.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Waters
  • Date: 2002-03-25 17:24:03 UTC
  • Revision ID: james.westby@ubuntu.com-20020325172403-8lexv63608acfqgt
Tags: upstream-2.3.107
ImportĀ upstreamĀ versionĀ 2.3.107

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef CORBA_POLICY_TYPE_H
 
2
#define CORBA_POLICY_TYPE_H 1
 
3
 
 
4
#include <glib.h>
 
5
 
 
6
G_BEGIN_DECLS
 
7
 
 
8
#ifdef ORBIT2_INTERNAL_API
 
9
 
 
10
struct CORBA_Policy_type {
 
11
        struct ORBit_RootObject_struct parent;
 
12
 
 
13
        CORBA_unsigned_long            type;
 
14
        CORBA_unsigned_long            value; 
 
15
};
 
16
 
 
17
CORBA_Policy        ORBit_Policy_new (CORBA_unsigned_long type,
 
18
                                      CORBA_unsigned_long value);
 
19
 
 
20
#endif /* ORBIT2_INTERNAL_API */
 
21
 
 
22
G_END_DECLS
 
23
 
 
24
#endif