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

« back to all changes in this revision

Viewing changes to include/orbit/orb-core/corba-object-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_OBJECT_TYPE_H
 
2
#define CORBA_OBJECT_TYPE_H 1
 
3
 
 
4
#include <glib.h>
 
5
 
 
6
G_BEGIN_DECLS
 
7
 
 
8
#if defined(ORBIT2_INTERNAL_API) || defined (ORBIT2_STUBS_API)
 
9
 
 
10
#ifndef ORBIT2_INTERNAL_API
 
11
#define  GIOPConnection void
 
12
#endif
 
13
 
 
14
typedef CORBA_sequence_CORBA_octet ORBit_ObjectKey;
 
15
 
 
16
struct CORBA_Object_type {
 
17
        struct ORBit_RootObject_struct parent;
 
18
 
 
19
        CORBA_ORB                      orb;
 
20
        GIOPConnection                *connection;
 
21
        GQuark                         type_qid;
 
22
        GSList                        *profile_list;
 
23
        GSList                        *forward_locations;
 
24
        ORBit_ObjectKey               *object_key;
 
25
        ORBit_OAObject                 adaptor_obj;
 
26
};
 
27
 
 
28
#endif /* defined(ORBIT2_INTERNAL_API) || defined (ORBIT2_STUBS_API) */
 
29
 
 
30
G_END_DECLS
 
31
 
 
32
#endif