This file is indexed.

/usr/include/COS/CosCompoundLifeCycle.hh is in libcos4-dev 4.2.2-0.8.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
// This file is generated by omniidl (C++ backend)- omniORB_4_2. Do not edit.
#ifndef __CosCompoundLifeCycle_hh__
#define __CosCompoundLifeCycle_hh__

#ifndef __CORBA_H_EXTERNAL_GUARD__
#include <omniORB4/CORBA.h>
#endif

#ifndef  USE_stub_in_nt_dll
# define USE_stub_in_nt_dll_NOT_DEFINED_CosCompoundLifeCycle
#endif
#ifndef  USE_core_stub_in_nt_dll
# define USE_core_stub_in_nt_dll_NOT_DEFINED_CosCompoundLifeCycle
#endif
#ifndef  USE_dyn_stub_in_nt_dll
# define USE_dyn_stub_in_nt_dll_NOT_DEFINED_CosCompoundLifeCycle
#endif


#include "COS_sysdep.h"
#ifndef __CosNaming_hh_EXTERNAL_GUARD__
#define __CosNaming_hh_EXTERNAL_GUARD__
#include "CosNaming.hh"
#endif
#ifndef __CosLifeCycle_hh_EXTERNAL_GUARD__
#define __CosLifeCycle_hh_EXTERNAL_GUARD__
#include "CosLifeCycle.hh"
#endif
#ifndef __corbaidl_hh_EXTERNAL_GUARD__
#define __corbaidl_hh_EXTERNAL_GUARD__
#include "corbaidl.hh"
#endif
#ifndef __boxes_hh_EXTERNAL_GUARD__
#define __boxes_hh_EXTERNAL_GUARD__
#include "boxes.hh"
#endif
#ifndef __ir_hh_EXTERNAL_GUARD__
#define __ir_hh_EXTERNAL_GUARD__
#include "ir.hh"
#endif
#ifndef __CosObjectIdentity_hh_EXTERNAL_GUARD__
#define __CosObjectIdentity_hh_EXTERNAL_GUARD__
#include "CosObjectIdentity.hh"
#endif
#ifndef __CosRelationships_hh_EXTERNAL_GUARD__
#define __CosRelationships_hh_EXTERNAL_GUARD__
#include "CosRelationships.hh"
#endif
#ifndef __CosGraphs_hh_EXTERNAL_GUARD__
#define __CosGraphs_hh_EXTERNAL_GUARD__
#include "CosGraphs.hh"
#endif



#ifdef USE_stub_in_nt_dll
# ifndef USE_core_stub_in_nt_dll
#  define USE_core_stub_in_nt_dll
# endif
# ifndef USE_dyn_stub_in_nt_dll
#  define USE_dyn_stub_in_nt_dll
# endif
#endif

#ifdef _core_attr
# error "A local CPP macro _core_attr has already been defined."
#else
# ifdef  USE_core_stub_in_nt_dll
#  define _core_attr _OMNIORB_NTDLL_IMPORT
# else
#  define _core_attr
# endif
#endif

#ifdef _dyn_attr
# error "A local CPP macro _dyn_attr has already been defined."
#else
# ifdef  USE_dyn_stub_in_nt_dll
#  define _dyn_attr _OMNIORB_NTDLL_IMPORT
# else
#  define _dyn_attr
# endif
#endif



_CORBA_MODULE CosCompoundLifeCycle

_CORBA_MODULE_BEG

#ifndef __CosCompoundLifeCycle_mOperationsFactory__
#define __CosCompoundLifeCycle_mOperationsFactory__
  class OperationsFactory;
  class _objref_OperationsFactory;
  class _impl_OperationsFactory;
  
  typedef _objref_OperationsFactory* OperationsFactory_ptr;
  typedef OperationsFactory_ptr OperationsFactoryRef;

  class OperationsFactory_Helper {
  public:
    typedef OperationsFactory_ptr _ptr_type;

    static _ptr_type _nil();
    static _CORBA_Boolean is_nil(_ptr_type);
    static void release(_ptr_type);
    static void duplicate(_ptr_type);
    static void marshalObjRef(_ptr_type, cdrStream&);
    static _ptr_type unmarshalObjRef(cdrStream&);
  };

  typedef _CORBA_ObjRef_Var<_objref_OperationsFactory, OperationsFactory_Helper> OperationsFactory_var;
  typedef _CORBA_ObjRef_OUT_arg<_objref_OperationsFactory,OperationsFactory_Helper > OperationsFactory_out;

#endif

#ifndef __CosCompoundLifeCycle_mOperations__
#define __CosCompoundLifeCycle_mOperations__
  class Operations;
  class _objref_Operations;
  class _impl_Operations;
  
  typedef _objref_Operations* Operations_ptr;
  typedef Operations_ptr OperationsRef;

  class Operations_Helper {
  public:
    typedef Operations_ptr _ptr_type;

    static _ptr_type _nil();
    static _CORBA_Boolean is_nil(_ptr_type);
    static void release(_ptr_type);
    static void duplicate(_ptr_type);
    static void marshalObjRef(_ptr_type, cdrStream&);
    static _ptr_type unmarshalObjRef(cdrStream&);
  };

  typedef _CORBA_ObjRef_Var<_objref_Operations, Operations_Helper> Operations_var;
  typedef _CORBA_ObjRef_OUT_arg<_objref_Operations,Operations_Helper > Operations_out;

#endif

#ifndef __CosCompoundLifeCycle_mNode__
#define __CosCompoundLifeCycle_mNode__
  class Node;
  class _objref_Node;
  class _impl_Node;
  
  typedef _objref_Node* Node_ptr;
  typedef Node_ptr NodeRef;

  class Node_Helper {
  public:
    typedef Node_ptr _ptr_type;

    static _ptr_type _nil();
    static _CORBA_Boolean is_nil(_ptr_type);
    static void release(_ptr_type);
    static void duplicate(_ptr_type);
    static void marshalObjRef(_ptr_type, cdrStream&);
    static _ptr_type unmarshalObjRef(cdrStream&);
  };

  typedef _CORBA_ObjRef_Var<_objref_Node, Node_Helper> Node_var;
  typedef _CORBA_ObjRef_OUT_arg<_objref_Node,Node_Helper > Node_out;

#endif

#ifndef __CosCompoundLifeCycle_mRole__
#define __CosCompoundLifeCycle_mRole__
  class Role;
  class _objref_Role;
  class _impl_Role;
  
  typedef _objref_Role* Role_ptr;
  typedef Role_ptr RoleRef;

  class Role_Helper {
  public:
    typedef Role_ptr _ptr_type;

    static _ptr_type _nil();
    static _CORBA_Boolean is_nil(_ptr_type);
    static void release(_ptr_type);
    static void duplicate(_ptr_type);
    static void marshalObjRef(_ptr_type, cdrStream&);
    static _ptr_type unmarshalObjRef(cdrStream&);
  };

  typedef _CORBA_ObjRef_Var<_objref_Role, Role_Helper> Role_var;
  typedef _CORBA_ObjRef_OUT_arg<_objref_Role,Role_Helper > Role_out;

#endif

#ifndef __CosCompoundLifeCycle_mRelationship__
#define __CosCompoundLifeCycle_mRelationship__
  class Relationship;
  class _objref_Relationship;
  class _impl_Relationship;
  
  typedef _objref_Relationship* Relationship_ptr;
  typedef Relationship_ptr RelationshipRef;

  class Relationship_Helper {
  public:
    typedef Relationship_ptr _ptr_type;

    static _ptr_type _nil();
    static _CORBA_Boolean is_nil(_ptr_type);
    static void release(_ptr_type);
    static void duplicate(_ptr_type);
    static void marshalObjRef(_ptr_type, cdrStream&);
    static _ptr_type unmarshalObjRef(cdrStream&);
  };

  typedef _CORBA_ObjRef_Var<_objref_Relationship, Relationship_Helper> Relationship_var;
  typedef _CORBA_ObjRef_OUT_arg<_objref_Relationship,Relationship_Helper > Relationship_out;

#endif

#ifndef __CosCompoundLifeCycle_mPropagationCriteriaFactory__
#define __CosCompoundLifeCycle_mPropagationCriteriaFactory__
  class PropagationCriteriaFactory;
  class _objref_PropagationCriteriaFactory;
  class _impl_PropagationCriteriaFactory;
  
  typedef _objref_PropagationCriteriaFactory* PropagationCriteriaFactory_ptr;
  typedef PropagationCriteriaFactory_ptr PropagationCriteriaFactoryRef;

  class PropagationCriteriaFactory_Helper {
  public:
    typedef PropagationCriteriaFactory_ptr _ptr_type;

    static _ptr_type _nil();
    static _CORBA_Boolean is_nil(_ptr_type);
    static void release(_ptr_type);
    static void duplicate(_ptr_type);
    static void marshalObjRef(_ptr_type, cdrStream&);
    static _ptr_type unmarshalObjRef(cdrStream&);
  };

  typedef _CORBA_ObjRef_Var<_objref_PropagationCriteriaFactory, PropagationCriteriaFactory_Helper> PropagationCriteriaFactory_var;
  typedef _CORBA_ObjRef_OUT_arg<_objref_PropagationCriteriaFactory,PropagationCriteriaFactory_Helper > PropagationCriteriaFactory_out;

#endif

  enum Operation { copy, move, remove /*, __max_Operation=0xffffffff */ };
  typedef Operation& Operation_out;

  _CORBA_MODULE_VAR _dyn_attr const ::CORBA::TypeCode_ptr _tc_Operation;

  struct RelationshipHandle {
    typedef _CORBA_ConstrType_Variable_Var<RelationshipHandle> _var_type;

    
    _CORBA_ObjRef_Member< CosRelationships::_objref_Relationship, CosRelationships::Relationship_Helper>  the_relationship;

    CosObjectIdentity::ObjectIdentifier constant_random_id;

  

    void operator>>= (cdrStream &) const;
    void operator<<= (cdrStream &);
  };

  typedef RelationshipHandle::_var_type RelationshipHandle_var;

  typedef _CORBA_ConstrType_Variable_OUT_arg< RelationshipHandle,RelationshipHandle_var > RelationshipHandle_out;

  _CORBA_MODULE_VAR _dyn_attr const ::CORBA::TypeCode_ptr _tc_RelationshipHandle;

#ifndef __CosCompoundLifeCycle_mOperationsFactory__
#define __CosCompoundLifeCycle_mOperationsFactory__
  class OperationsFactory;
  class _objref_OperationsFactory;
  class _impl_OperationsFactory;
  
  typedef _objref_OperationsFactory* OperationsFactory_ptr;
  typedef OperationsFactory_ptr OperationsFactoryRef;

  class OperationsFactory_Helper {
  public:
    typedef OperationsFactory_ptr _ptr_type;

    static _ptr_type _nil();
    static _CORBA_Boolean is_nil(_ptr_type);
    static void release(_ptr_type);
    static void duplicate(_ptr_type);
    static void marshalObjRef(_ptr_type, cdrStream&);
    static _ptr_type unmarshalObjRef(cdrStream&);
  };

  typedef _CORBA_ObjRef_Var<_objref_OperationsFactory, OperationsFactory_Helper> OperationsFactory_var;
  typedef _CORBA_ObjRef_OUT_arg<_objref_OperationsFactory,OperationsFactory_Helper > OperationsFactory_out;

#endif

  // interface OperationsFactory
  class OperationsFactory {
  public:
    // Declarations for this interface type.
    typedef OperationsFactory_ptr _ptr_type;
    typedef OperationsFactory_var _var_type;

    static _ptr_type _duplicate(_ptr_type);
    static _ptr_type _narrow(::CORBA::Object_ptr);
    static _ptr_type _unchecked_narrow(::CORBA::Object_ptr);
    
    static _ptr_type _nil();

    static inline void _marshalObjRef(_ptr_type, cdrStream&);

    static inline _ptr_type _unmarshalObjRef(cdrStream& s) {
      omniObjRef* o = omniObjRef::_unMarshal(_PD_repoId,s);
      if (o)
        return (_ptr_type) o->_ptrToObjRef(_PD_repoId);
      else
        return _nil();
    }

    static inline _ptr_type _fromObjRef(omniObjRef* o) {
      if (o)
        return (_ptr_type) o->_ptrToObjRef(_PD_repoId);
      else
        return _nil();
    }

    static _core_attr const char* _PD_repoId;

    // Other IDL defined within this scope.
    
  };

  class _objref_OperationsFactory :
    public virtual ::CORBA::Object,
    public virtual omniObjRef
  {
  public:
    // IDL operations
    Operations_ptr create_compound_operations();

    // Constructors
    inline _objref_OperationsFactory()  { _PR_setobj(0); }  // nil
    _objref_OperationsFactory(omniIOR*, omniIdentity*);

  protected:
    virtual ~_objref_OperationsFactory();

    
  private:
    virtual void* _ptrToObjRef(const char*);

    _objref_OperationsFactory(const _objref_OperationsFactory&);
    _objref_OperationsFactory& operator = (const _objref_OperationsFactory&);
    // not implemented

    friend class OperationsFactory;
  };

  class _pof_OperationsFactory : public _OMNI_NS(proxyObjectFactory) {
  public:
    inline _pof_OperationsFactory() : _OMNI_NS(proxyObjectFactory)(OperationsFactory::_PD_repoId) {}
    virtual ~_pof_OperationsFactory();

    virtual omniObjRef* newObjRef(omniIOR*,omniIdentity*);
    virtual _CORBA_Boolean is_a(const char*) const;
  };

  class _impl_OperationsFactory :
    public virtual omniServant
  {
  public:
    virtual ~_impl_OperationsFactory();

    virtual Operations_ptr create_compound_operations() = 0;
    
  public:  // Really protected, workaround for xlC
    virtual _CORBA_Boolean _dispatch(omniCallHandle&);

  private:
    virtual void* _ptrToInterface(const char*);
    virtual const char* _mostDerivedRepoId();
    
  };


  _CORBA_MODULE_VAR _dyn_attr const ::CORBA::TypeCode_ptr _tc_OperationsFactory;

#ifndef __CosCompoundLifeCycle_mOperations__
#define __CosCompoundLifeCycle_mOperations__
  class Operations;
  class _objref_Operations;
  class _impl_Operations;
  
  typedef _objref_Operations* Operations_ptr;
  typedef Operations_ptr OperationsRef;

  class Operations_Helper {
  public:
    typedef Operations_ptr _ptr_type;

    static _ptr_type _nil();
    static _CORBA_Boolean is_nil(_ptr_type);
    static void release(_ptr_type);
    static void duplicate(_ptr_type);
    static void marshalObjRef(_ptr_type, cdrStream&);
    static _ptr_type unmarshalObjRef(cdrStream&);
  };

  typedef _CORBA_ObjRef_Var<_objref_Operations, Operations_Helper> Operations_var;
  typedef _CORBA_ObjRef_OUT_arg<_objref_Operations,Operations_Helper > Operations_out;

#endif

  // interface Operations
  class Operations {
  public:
    // Declarations for this interface type.
    typedef Operations_ptr _ptr_type;
    typedef Operations_var _var_type;

    static _ptr_type _duplicate(_ptr_type);
    static _ptr_type _narrow(::CORBA::Object_ptr);
    static _ptr_type _unchecked_narrow(::CORBA::Object_ptr);
    
    static _ptr_type _nil();

    static inline void _marshalObjRef(_ptr_type, cdrStream&);

    static inline _ptr_type _unmarshalObjRef(cdrStream& s) {
      omniObjRef* o = omniObjRef::_unMarshal(_PD_repoId,s);
      if (o)
        return (_ptr_type) o->_ptrToObjRef(_PD_repoId);
      else
        return _nil();
    }

    static inline _ptr_type _fromObjRef(omniObjRef* o) {
      if (o)
        return (_ptr_type) o->_ptrToObjRef(_PD_repoId);
      else
        return _nil();
    }

    static _core_attr const char* _PD_repoId;

    // Other IDL defined within this scope.
    
  };

  class _objref_Operations :
    public virtual ::CORBA::Object,
    public virtual omniObjRef
  {
  public:
    // IDL operations
    Node_ptr copy(::CosCompoundLifeCycle::Node_ptr starting_node, ::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria);
    void move(::CosCompoundLifeCycle::Node_ptr starting_node, ::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria);
    void remove(::CosCompoundLifeCycle::Node_ptr starting_node);
    void destroy();

    // Constructors
    inline _objref_Operations()  { _PR_setobj(0); }  // nil
    _objref_Operations(omniIOR*, omniIdentity*);

  protected:
    virtual ~_objref_Operations();

    
  private:
    virtual void* _ptrToObjRef(const char*);

    _objref_Operations(const _objref_Operations&);
    _objref_Operations& operator = (const _objref_Operations&);
    // not implemented

    friend class Operations;
  };

  class _pof_Operations : public _OMNI_NS(proxyObjectFactory) {
  public:
    inline _pof_Operations() : _OMNI_NS(proxyObjectFactory)(Operations::_PD_repoId) {}
    virtual ~_pof_Operations();

    virtual omniObjRef* newObjRef(omniIOR*,omniIdentity*);
    virtual _CORBA_Boolean is_a(const char*) const;
  };

  class _impl_Operations :
    public virtual omniServant
  {
  public:
    virtual ~_impl_Operations();

    virtual Node_ptr copy(::CosCompoundLifeCycle::Node_ptr starting_node, ::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria) = 0;
    virtual void move(::CosCompoundLifeCycle::Node_ptr starting_node, ::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria) = 0;
    virtual void remove(::CosCompoundLifeCycle::Node_ptr starting_node) = 0;
    virtual void destroy() = 0;
    
  public:  // Really protected, workaround for xlC
    virtual _CORBA_Boolean _dispatch(omniCallHandle&);

  private:
    virtual void* _ptrToInterface(const char*);
    virtual const char* _mostDerivedRepoId();
    
  };


  _CORBA_MODULE_VAR _dyn_attr const ::CORBA::TypeCode_ptr _tc_Operations;

#ifndef __CosCompoundLifeCycle_mNode__
#define __CosCompoundLifeCycle_mNode__
  class Node;
  class _objref_Node;
  class _impl_Node;
  
  typedef _objref_Node* Node_ptr;
  typedef Node_ptr NodeRef;

  class Node_Helper {
  public:
    typedef Node_ptr _ptr_type;

    static _ptr_type _nil();
    static _CORBA_Boolean is_nil(_ptr_type);
    static void release(_ptr_type);
    static void duplicate(_ptr_type);
    static void marshalObjRef(_ptr_type, cdrStream&);
    static _ptr_type unmarshalObjRef(cdrStream&);
  };

  typedef _CORBA_ObjRef_Var<_objref_Node, Node_Helper> Node_var;
  typedef _CORBA_ObjRef_OUT_arg<_objref_Node,Node_Helper > Node_out;

#endif

  // interface Node
  class Node {
  public:
    // Declarations for this interface type.
    typedef Node_ptr _ptr_type;
    typedef Node_var _var_type;

    static _ptr_type _duplicate(_ptr_type);
    static _ptr_type _narrow(::CORBA::Object_ptr);
    static _ptr_type _unchecked_narrow(::CORBA::Object_ptr);
    
    static _ptr_type _nil();

    static inline void _marshalObjRef(_ptr_type, cdrStream&);

    static inline _ptr_type _unmarshalObjRef(cdrStream& s) {
      omniObjRef* o = omniObjRef::_unMarshal(_PD_repoId,s);
      if (o)
        return (_ptr_type) o->_ptrToObjRef(_PD_repoId);
      else
        return _nil();
    }

    static inline _ptr_type _fromObjRef(omniObjRef* o) {
      if (o)
        return (_ptr_type) o->_ptrToObjRef(_PD_repoId);
      else
        return _nil();
    }

    static _core_attr const char* _PD_repoId;

    // Other IDL defined within this scope.
    class NotLifeCycleObject : public ::CORBA::UserException {
    public:
      
      

      inline NotLifeCycleObject() {
        pd_insertToAnyFn    = insertToAnyFn;
        pd_insertToAnyFnNCP = insertToAnyFnNCP;
      }
      NotLifeCycleObject(const NotLifeCycleObject&);
      
      NotLifeCycleObject& operator=(const NotLifeCycleObject&);
      virtual ~NotLifeCycleObject();
      virtual void _raise() const;
      static NotLifeCycleObject* _downcast(::CORBA::Exception*);
      static const NotLifeCycleObject* _downcast(const ::CORBA::Exception*);
      static inline NotLifeCycleObject* _narrow(::CORBA::Exception* _e) {
        return _downcast(_e);
      }
      
      inline void operator>>=(cdrStream&) const { }
      inline void operator<<=(cdrStream&) { }

      static _core_attr insertExceptionToAny    insertToAnyFn;
      static _core_attr insertExceptionToAnyNCP insertToAnyFnNCP;

      virtual ::CORBA::Exception* _NP_duplicate() const;

      static _core_attr const char* _PD_repoId;
      static _core_attr const char* _PD_typeId;

    private:
      virtual const char* _NP_typeId() const;
      virtual const char* _NP_repoId(int*) const;
      virtual void _NP_marshal(cdrStream&) const;
    };

    static _dyn_attr const ::CORBA::TypeCode_ptr _tc_NotLifeCycleObject;

  
  };

  class _objref_Node :
    public virtual CosGraphs::_objref_Node
  {
  public:
    // IDL operations
    void copy_node(::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria, ::CosCompoundLifeCycle::Node_out new_node, ::CosGraphs::Node::Roles_out roles_of_new_node);
    void move_node(::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria);
    void remove_node();
    CosLifeCycle::LifeCycleObject_ptr get_life_cycle_object();

    // Constructors
    inline _objref_Node()  { _PR_setobj(0); }  // nil
    _objref_Node(omniIOR*, omniIdentity*);

  protected:
    virtual ~_objref_Node();

    
  private:
    virtual void* _ptrToObjRef(const char*);

    _objref_Node(const _objref_Node&);
    _objref_Node& operator = (const _objref_Node&);
    // not implemented

    friend class Node;
  };

  class _pof_Node : public _OMNI_NS(proxyObjectFactory) {
  public:
    inline _pof_Node() : _OMNI_NS(proxyObjectFactory)(Node::_PD_repoId) {}
    virtual ~_pof_Node();

    virtual omniObjRef* newObjRef(omniIOR*,omniIdentity*);
    virtual _CORBA_Boolean is_a(const char*) const;
  };

  class _impl_Node :
    public virtual CosGraphs::_impl_Node
  {
  public:
    virtual ~_impl_Node();

    virtual void copy_node(::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria, ::CosCompoundLifeCycle::Node_out new_node, ::CosGraphs::Node::Roles_out roles_of_new_node) = 0;
    virtual void move_node(::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria) = 0;
    virtual void remove_node() = 0;
    virtual CosLifeCycle::LifeCycleObject_ptr get_life_cycle_object() = 0;
    
  public:  // Really protected, workaround for xlC
    virtual _CORBA_Boolean _dispatch(omniCallHandle&);

  private:
    virtual void* _ptrToInterface(const char*);
    virtual const char* _mostDerivedRepoId();
    
  };


  _CORBA_MODULE_VAR _dyn_attr const ::CORBA::TypeCode_ptr _tc_Node;

#ifndef __CosCompoundLifeCycle_mRole__
#define __CosCompoundLifeCycle_mRole__
  class Role;
  class _objref_Role;
  class _impl_Role;
  
  typedef _objref_Role* Role_ptr;
  typedef Role_ptr RoleRef;

  class Role_Helper {
  public:
    typedef Role_ptr _ptr_type;

    static _ptr_type _nil();
    static _CORBA_Boolean is_nil(_ptr_type);
    static void release(_ptr_type);
    static void duplicate(_ptr_type);
    static void marshalObjRef(_ptr_type, cdrStream&);
    static _ptr_type unmarshalObjRef(cdrStream&);
  };

  typedef _CORBA_ObjRef_Var<_objref_Role, Role_Helper> Role_var;
  typedef _CORBA_ObjRef_OUT_arg<_objref_Role,Role_Helper > Role_out;

#endif

  // interface Role
  class Role {
  public:
    // Declarations for this interface type.
    typedef Role_ptr _ptr_type;
    typedef Role_var _var_type;

    static _ptr_type _duplicate(_ptr_type);
    static _ptr_type _narrow(::CORBA::Object_ptr);
    static _ptr_type _unchecked_narrow(::CORBA::Object_ptr);
    
    static _ptr_type _nil();

    static inline void _marshalObjRef(_ptr_type, cdrStream&);

    static inline _ptr_type _unmarshalObjRef(cdrStream& s) {
      omniObjRef* o = omniObjRef::_unMarshal(_PD_repoId,s);
      if (o)
        return (_ptr_type) o->_ptrToObjRef(_PD_repoId);
      else
        return _nil();
    }

    static inline _ptr_type _fromObjRef(omniObjRef* o) {
      if (o)
        return (_ptr_type) o->_ptrToObjRef(_PD_repoId);
      else
        return _nil();
    }

    static _core_attr const char* _PD_repoId;

    // Other IDL defined within this scope.
    
  };

  class _objref_Role :
    public virtual CosGraphs::_objref_Role
  {
  public:
    // IDL operations
    Role_ptr copy_role(::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria);
    void move_role(::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria);
    CosGraphs::PropagationValue life_cycle_propagation(::CosCompoundLifeCycle::Operation op, const ::CosCompoundLifeCycle::RelationshipHandle& rel, const char* to_role_name, ::CORBA::Boolean& same_for_all);

    // Constructors
    inline _objref_Role()  { _PR_setobj(0); }  // nil
    _objref_Role(omniIOR*, omniIdentity*);

  protected:
    virtual ~_objref_Role();

    
  private:
    virtual void* _ptrToObjRef(const char*);

    _objref_Role(const _objref_Role&);
    _objref_Role& operator = (const _objref_Role&);
    // not implemented

    friend class Role;
  };

  class _pof_Role : public _OMNI_NS(proxyObjectFactory) {
  public:
    inline _pof_Role() : _OMNI_NS(proxyObjectFactory)(Role::_PD_repoId) {}
    virtual ~_pof_Role();

    virtual omniObjRef* newObjRef(omniIOR*,omniIdentity*);
    virtual _CORBA_Boolean is_a(const char*) const;
  };

  class _impl_Role :
    public virtual CosGraphs::_impl_Role
  {
  public:
    virtual ~_impl_Role();

    virtual Role_ptr copy_role(::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria) = 0;
    virtual void move_role(::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria) = 0;
    virtual CosGraphs::PropagationValue life_cycle_propagation(::CosCompoundLifeCycle::Operation op, const ::CosCompoundLifeCycle::RelationshipHandle& rel, const char* to_role_name, ::CORBA::Boolean& same_for_all) = 0;
    
  public:  // Really protected, workaround for xlC
    virtual _CORBA_Boolean _dispatch(omniCallHandle&);

  private:
    virtual void* _ptrToInterface(const char*);
    virtual const char* _mostDerivedRepoId();
    
  };


  _CORBA_MODULE_VAR _dyn_attr const ::CORBA::TypeCode_ptr _tc_Role;

#ifndef __CosCompoundLifeCycle_mRelationship__
#define __CosCompoundLifeCycle_mRelationship__
  class Relationship;
  class _objref_Relationship;
  class _impl_Relationship;
  
  typedef _objref_Relationship* Relationship_ptr;
  typedef Relationship_ptr RelationshipRef;

  class Relationship_Helper {
  public:
    typedef Relationship_ptr _ptr_type;

    static _ptr_type _nil();
    static _CORBA_Boolean is_nil(_ptr_type);
    static void release(_ptr_type);
    static void duplicate(_ptr_type);
    static void marshalObjRef(_ptr_type, cdrStream&);
    static _ptr_type unmarshalObjRef(cdrStream&);
  };

  typedef _CORBA_ObjRef_Var<_objref_Relationship, Relationship_Helper> Relationship_var;
  typedef _CORBA_ObjRef_OUT_arg<_objref_Relationship,Relationship_Helper > Relationship_out;

#endif

  // interface Relationship
  class Relationship {
  public:
    // Declarations for this interface type.
    typedef Relationship_ptr _ptr_type;
    typedef Relationship_var _var_type;

    static _ptr_type _duplicate(_ptr_type);
    static _ptr_type _narrow(::CORBA::Object_ptr);
    static _ptr_type _unchecked_narrow(::CORBA::Object_ptr);
    
    static _ptr_type _nil();

    static inline void _marshalObjRef(_ptr_type, cdrStream&);

    static inline _ptr_type _unmarshalObjRef(cdrStream& s) {
      omniObjRef* o = omniObjRef::_unMarshal(_PD_repoId,s);
      if (o)
        return (_ptr_type) o->_ptrToObjRef(_PD_repoId);
      else
        return _nil();
    }

    static inline _ptr_type _fromObjRef(omniObjRef* o) {
      if (o)
        return (_ptr_type) o->_ptrToObjRef(_PD_repoId);
      else
        return _nil();
    }

    static _core_attr const char* _PD_repoId;

    // Other IDL defined within this scope.
    
  };

  class _objref_Relationship :
    public virtual CosRelationships::_objref_Relationship
  {
  public:
    // IDL operations
    Relationship_ptr copy_relationship(::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria, const ::CosGraphs::NamedRoles& new_roles);
    void move_relationship(::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria);
    CosGraphs::PropagationValue life_cycle_propagation(::CosCompoundLifeCycle::Operation op, const char* from_role_name, const char* to_role_name, ::CORBA::Boolean& same_for_all);

    // Constructors
    inline _objref_Relationship()  { _PR_setobj(0); }  // nil
    _objref_Relationship(omniIOR*, omniIdentity*);

  protected:
    virtual ~_objref_Relationship();

    
  private:
    virtual void* _ptrToObjRef(const char*);

    _objref_Relationship(const _objref_Relationship&);
    _objref_Relationship& operator = (const _objref_Relationship&);
    // not implemented

    friend class Relationship;
  };

  class _pof_Relationship : public _OMNI_NS(proxyObjectFactory) {
  public:
    inline _pof_Relationship() : _OMNI_NS(proxyObjectFactory)(Relationship::_PD_repoId) {}
    virtual ~_pof_Relationship();

    virtual omniObjRef* newObjRef(omniIOR*,omniIdentity*);
    virtual _CORBA_Boolean is_a(const char*) const;
  };

  class _impl_Relationship :
    public virtual CosRelationships::_impl_Relationship
  {
  public:
    virtual ~_impl_Relationship();

    virtual Relationship_ptr copy_relationship(::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria, const ::CosGraphs::NamedRoles& new_roles) = 0;
    virtual void move_relationship(::CosLifeCycle::FactoryFinder_ptr there, const ::CosLifeCycle::Criteria& the_criteria) = 0;
    virtual CosGraphs::PropagationValue life_cycle_propagation(::CosCompoundLifeCycle::Operation op, const char* from_role_name, const char* to_role_name, ::CORBA::Boolean& same_for_all) = 0;
    
  public:  // Really protected, workaround for xlC
    virtual _CORBA_Boolean _dispatch(omniCallHandle&);

  private:
    virtual void* _ptrToInterface(const char*);
    virtual const char* _mostDerivedRepoId();
    
  };


  _CORBA_MODULE_VAR _dyn_attr const ::CORBA::TypeCode_ptr _tc_Relationship;

#ifndef __CosCompoundLifeCycle_mPropagationCriteriaFactory__
#define __CosCompoundLifeCycle_mPropagationCriteriaFactory__
  class PropagationCriteriaFactory;
  class _objref_PropagationCriteriaFactory;
  class _impl_PropagationCriteriaFactory;
  
  typedef _objref_PropagationCriteriaFactory* PropagationCriteriaFactory_ptr;
  typedef PropagationCriteriaFactory_ptr PropagationCriteriaFactoryRef;

  class PropagationCriteriaFactory_Helper {
  public:
    typedef PropagationCriteriaFactory_ptr _ptr_type;

    static _ptr_type _nil();
    static _CORBA_Boolean is_nil(_ptr_type);
    static void release(_ptr_type);
    static void duplicate(_ptr_type);
    static void marshalObjRef(_ptr_type, cdrStream&);
    static _ptr_type unmarshalObjRef(cdrStream&);
  };

  typedef _CORBA_ObjRef_Var<_objref_PropagationCriteriaFactory, PropagationCriteriaFactory_Helper> PropagationCriteriaFactory_var;
  typedef _CORBA_ObjRef_OUT_arg<_objref_PropagationCriteriaFactory,PropagationCriteriaFactory_Helper > PropagationCriteriaFactory_out;

#endif

  // interface PropagationCriteriaFactory
  class PropagationCriteriaFactory {
  public:
    // Declarations for this interface type.
    typedef PropagationCriteriaFactory_ptr _ptr_type;
    typedef PropagationCriteriaFactory_var _var_type;

    static _ptr_type _duplicate(_ptr_type);
    static _ptr_type _narrow(::CORBA::Object_ptr);
    static _ptr_type _unchecked_narrow(::CORBA::Object_ptr);
    
    static _ptr_type _nil();

    static inline void _marshalObjRef(_ptr_type, cdrStream&);

    static inline _ptr_type _unmarshalObjRef(cdrStream& s) {
      omniObjRef* o = omniObjRef::_unMarshal(_PD_repoId,s);
      if (o)
        return (_ptr_type) o->_ptrToObjRef(_PD_repoId);
      else
        return _nil();
    }

    static inline _ptr_type _fromObjRef(omniObjRef* o) {
      if (o)
        return (_ptr_type) o->_ptrToObjRef(_PD_repoId);
      else
        return _nil();
    }

    static _core_attr const char* _PD_repoId;

    // Other IDL defined within this scope.
    
  };

  class _objref_PropagationCriteriaFactory :
    public virtual ::CORBA::Object,
    public virtual omniObjRef
  {
  public:
    // IDL operations
    CosGraphs::TraversalCriteria_ptr create(::CosCompoundLifeCycle::Operation op);

    // Constructors
    inline _objref_PropagationCriteriaFactory()  { _PR_setobj(0); }  // nil
    _objref_PropagationCriteriaFactory(omniIOR*, omniIdentity*);

  protected:
    virtual ~_objref_PropagationCriteriaFactory();

    
  private:
    virtual void* _ptrToObjRef(const char*);

    _objref_PropagationCriteriaFactory(const _objref_PropagationCriteriaFactory&);
    _objref_PropagationCriteriaFactory& operator = (const _objref_PropagationCriteriaFactory&);
    // not implemented

    friend class PropagationCriteriaFactory;
  };

  class _pof_PropagationCriteriaFactory : public _OMNI_NS(proxyObjectFactory) {
  public:
    inline _pof_PropagationCriteriaFactory() : _OMNI_NS(proxyObjectFactory)(PropagationCriteriaFactory::_PD_repoId) {}
    virtual ~_pof_PropagationCriteriaFactory();

    virtual omniObjRef* newObjRef(omniIOR*,omniIdentity*);
    virtual _CORBA_Boolean is_a(const char*) const;
  };

  class _impl_PropagationCriteriaFactory :
    public virtual omniServant
  {
  public:
    virtual ~_impl_PropagationCriteriaFactory();

    virtual CosGraphs::TraversalCriteria_ptr create(::CosCompoundLifeCycle::Operation op) = 0;
    
  public:  // Really protected, workaround for xlC
    virtual _CORBA_Boolean _dispatch(omniCallHandle&);

  private:
    virtual void* _ptrToInterface(const char*);
    virtual const char* _mostDerivedRepoId();
    
  };


  _CORBA_MODULE_VAR _dyn_attr const ::CORBA::TypeCode_ptr _tc_PropagationCriteriaFactory;

_CORBA_MODULE_END



_CORBA_MODULE POA_CosCompoundLifeCycle
_CORBA_MODULE_BEG

  class OperationsFactory :
    public virtual CosCompoundLifeCycle::_impl_OperationsFactory,
    public virtual ::PortableServer::ServantBase
  {
  public:
    virtual ~OperationsFactory();

    inline ::CosCompoundLifeCycle::OperationsFactory_ptr _this() {
      return (::CosCompoundLifeCycle::OperationsFactory_ptr) _do_this(::CosCompoundLifeCycle::OperationsFactory::_PD_repoId);
    }
  };

  class Operations :
    public virtual CosCompoundLifeCycle::_impl_Operations,
    public virtual ::PortableServer::ServantBase
  {
  public:
    virtual ~Operations();

    inline ::CosCompoundLifeCycle::Operations_ptr _this() {
      return (::CosCompoundLifeCycle::Operations_ptr) _do_this(::CosCompoundLifeCycle::Operations::_PD_repoId);
    }
  };

  class Node :
    public virtual CosCompoundLifeCycle::_impl_Node,
    public virtual POA_CosGraphs::Node
  {
  public:
    virtual ~Node();

    inline ::CosCompoundLifeCycle::Node_ptr _this() {
      return (::CosCompoundLifeCycle::Node_ptr) _do_this(::CosCompoundLifeCycle::Node::_PD_repoId);
    }
  };

  class Role :
    public virtual CosCompoundLifeCycle::_impl_Role,
    public virtual POA_CosGraphs::Role
  {
  public:
    virtual ~Role();

    inline ::CosCompoundLifeCycle::Role_ptr _this() {
      return (::CosCompoundLifeCycle::Role_ptr) _do_this(::CosCompoundLifeCycle::Role::_PD_repoId);
    }
  };

  class Relationship :
    public virtual CosCompoundLifeCycle::_impl_Relationship,
    public virtual POA_CosRelationships::Relationship
  {
  public:
    virtual ~Relationship();

    inline ::CosCompoundLifeCycle::Relationship_ptr _this() {
      return (::CosCompoundLifeCycle::Relationship_ptr) _do_this(::CosCompoundLifeCycle::Relationship::_PD_repoId);
    }
  };

  class PropagationCriteriaFactory :
    public virtual CosCompoundLifeCycle::_impl_PropagationCriteriaFactory,
    public virtual ::PortableServer::ServantBase
  {
  public:
    virtual ~PropagationCriteriaFactory();

    inline ::CosCompoundLifeCycle::PropagationCriteriaFactory_ptr _this() {
      return (::CosCompoundLifeCycle::PropagationCriteriaFactory_ptr) _do_this(::CosCompoundLifeCycle::PropagationCriteriaFactory::_PD_repoId);
    }
  };

_CORBA_MODULE_END



_CORBA_MODULE OBV_CosCompoundLifeCycle
_CORBA_MODULE_BEG

_CORBA_MODULE_END





#undef _core_attr
#undef _dyn_attr

inline void operator >>=(CosCompoundLifeCycle::Operation _e, cdrStream& s) {
  ::operator>>=((::CORBA::ULong)_e, s);
}

inline void operator <<= (CosCompoundLifeCycle::Operation& _e, cdrStream& s) {
  ::CORBA::ULong _0RL_e;
  ::operator<<=(_0RL_e,s);
  if (_0RL_e <= CosCompoundLifeCycle::remove) {
    _e = (CosCompoundLifeCycle::Operation) _0RL_e;
  }
  else {
    OMNIORB_THROW(MARSHAL,_OMNI_NS(MARSHAL_InvalidEnumValue),
                  (::CORBA::CompletionStatus)s.completion());
  }
}

void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::Operation _s);
_CORBA_Boolean operator>>=(const ::CORBA::Any& _a, CosCompoundLifeCycle::Operation& _s);

extern void operator<<=(::CORBA::Any& _a, const CosCompoundLifeCycle::RelationshipHandle& _s);
extern void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::RelationshipHandle* _sp);
extern _CORBA_Boolean operator>>=(const ::CORBA::Any& _a, CosCompoundLifeCycle::RelationshipHandle*& _sp);
extern _CORBA_Boolean operator>>=(const ::CORBA::Any& _a, const CosCompoundLifeCycle::RelationshipHandle*& _sp);

void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::OperationsFactory_ptr _s);
void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::OperationsFactory_ptr* _s);
_CORBA_Boolean operator>>=(const ::CORBA::Any& _a, CosCompoundLifeCycle::OperationsFactory_ptr& _s);

void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::Operations_ptr _s);
void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::Operations_ptr* _s);
_CORBA_Boolean operator>>=(const ::CORBA::Any& _a, CosCompoundLifeCycle::Operations_ptr& _s);

void operator<<=(::CORBA::Any& _a, const CosCompoundLifeCycle::Node::NotLifeCycleObject& _s);
void operator<<=(::CORBA::Any& _a, const CosCompoundLifeCycle::Node::NotLifeCycleObject* _sp);
_CORBA_Boolean operator>>=(const ::CORBA::Any& _a, const CosCompoundLifeCycle::Node::NotLifeCycleObject*& _sp);

void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::Node_ptr _s);
void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::Node_ptr* _s);
_CORBA_Boolean operator>>=(const ::CORBA::Any& _a, CosCompoundLifeCycle::Node_ptr& _s);

void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::Role_ptr _s);
void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::Role_ptr* _s);
_CORBA_Boolean operator>>=(const ::CORBA::Any& _a, CosCompoundLifeCycle::Role_ptr& _s);

void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::Relationship_ptr _s);
void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::Relationship_ptr* _s);
_CORBA_Boolean operator>>=(const ::CORBA::Any& _a, CosCompoundLifeCycle::Relationship_ptr& _s);

void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::PropagationCriteriaFactory_ptr _s);
void operator<<=(::CORBA::Any& _a, CosCompoundLifeCycle::PropagationCriteriaFactory_ptr* _s);
_CORBA_Boolean operator>>=(const ::CORBA::Any& _a, CosCompoundLifeCycle::PropagationCriteriaFactory_ptr& _s);



inline void
CosCompoundLifeCycle::OperationsFactory::_marshalObjRef(::CosCompoundLifeCycle::OperationsFactory_ptr obj, cdrStream& s) {
  omniObjRef::_marshal(obj->_PR_getobj(),s);
}

inline void
CosCompoundLifeCycle::Operations::_marshalObjRef(::CosCompoundLifeCycle::Operations_ptr obj, cdrStream& s) {
  omniObjRef::_marshal(obj->_PR_getobj(),s);
}

inline void
CosCompoundLifeCycle::Node::_marshalObjRef(::CosCompoundLifeCycle::Node_ptr obj, cdrStream& s) {
  omniObjRef::_marshal(obj->_PR_getobj(),s);
}

inline void
CosCompoundLifeCycle::Role::_marshalObjRef(::CosCompoundLifeCycle::Role_ptr obj, cdrStream& s) {
  omniObjRef::_marshal(obj->_PR_getobj(),s);
}

inline void
CosCompoundLifeCycle::Relationship::_marshalObjRef(::CosCompoundLifeCycle::Relationship_ptr obj, cdrStream& s) {
  omniObjRef::_marshal(obj->_PR_getobj(),s);
}

inline void
CosCompoundLifeCycle::PropagationCriteriaFactory::_marshalObjRef(::CosCompoundLifeCycle::PropagationCriteriaFactory_ptr obj, cdrStream& s) {
  omniObjRef::_marshal(obj->_PR_getobj(),s);
}



#ifdef   USE_stub_in_nt_dll_NOT_DEFINED_CosCompoundLifeCycle
# undef  USE_stub_in_nt_dll
# undef  USE_stub_in_nt_dll_NOT_DEFINED_CosCompoundLifeCycle
#endif
#ifdef   USE_core_stub_in_nt_dll_NOT_DEFINED_CosCompoundLifeCycle
# undef  USE_core_stub_in_nt_dll
# undef  USE_core_stub_in_nt_dll_NOT_DEFINED_CosCompoundLifeCycle
#endif
#ifdef   USE_dyn_stub_in_nt_dll_NOT_DEFINED_CosCompoundLifeCycle
# undef  USE_dyn_stub_in_nt_dll
# undef  USE_dyn_stub_in_nt_dll_NOT_DEFINED_CosCompoundLifeCycle
#endif

#endif  // __CosCompoundLifeCycle_hh__