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
|
//
// File: Overload_BClass_Impl.hh
// Symbol: Overload.BClass-v1.0
// Symbol Type: class
// Babel Version: 0.10.2
// Description: Server-side implementation for Overload.BClass
//
// WARNING: Automatically generated; only changes within splicers preserved
//
// babel-version = 0.10.2
//
#ifndef included_Overload_BClass_Impl_hh
#define included_Overload_BClass_Impl_hh
#ifndef included_sidl_cxx_hh
#include "sidl_cxx.hh"
#endif
#ifndef included_Overload_BClass_IOR_h
#include "Overload_BClass_IOR.h"
#endif
//
// Includes for all method dependencies.
//
#ifndef included_Overload_BClass_hh
#include "Overload_BClass.hh"
#endif
#ifndef included_sidl_BaseInterface_hh
#include "sidl_BaseInterface.hh"
#endif
#ifndef included_sidl_ClassInfo_hh
#include "sidl_ClassInfo.hh"
#endif
#line 36 "../../../../babel/regression/overload/libCxx/Overload_BClass_Impl.hh"
// DO-NOT-DELETE splicer.begin(Overload.BClass._includes)
// Put additional includes or other arbitrary code here...
// DO-NOT-DELETE splicer.end(Overload.BClass._includes)
#line 40 "Overload_BClass_Impl.hh"
namespace Overload {
/**
* Symbol "Overload.BClass" (version 1.0)
*
* This class is passed into the overloaded method as another example
* of passing classes.
*/
class BClass_impl
#line 49 "../../../../babel/regression/overload/libCxx/Overload_BClass_Impl.hh"
// DO-NOT-DELETE splicer.begin(Overload.BClass._inherits)
// Put additional inheritance here...
// DO-NOT-DELETE splicer.end(Overload.BClass._inherits)
#line 55 "Overload_BClass_Impl.hh"
{
private:
// Pointer back to IOR.
// Use this to dispatch back through IOR vtable.
BClass self;
#line 59 "../../../../babel/regression/overload/libCxx/Overload_BClass_Impl.hh"
// DO-NOT-DELETE splicer.begin(Overload.BClass._implementation)
// Put additional implementation details here...
// DO-NOT-DELETE splicer.end(Overload.BClass._implementation)
#line 67 "Overload_BClass_Impl.hh"
private:
// private default constructor (required)
BClass_impl()
{}
public:
// sidl constructor (required)
// Note: alternate Skel constructor doesn't call addref()
// (fixes bug #275)
BClass_impl( struct Overload_BClass__object * s ) : self(s,
true) { _ctor(); }
// user defined construction
void _ctor();
// virtual destructor (required)
virtual ~BClass_impl() { _dtor(); }
// user defined destruction
void _dtor();
// static class initializer
static void _load();
public:
}; // end class BClass_impl
} // end namespace Overload
#line 93 "../../../../babel/regression/overload/libCxx/Overload_BClass_Impl.hh"
// DO-NOT-DELETE splicer.begin(Overload.BClass._misc)
// Put miscellaneous things here...
// DO-NOT-DELETE splicer.end(Overload.BClass._misc)
#line 103 "Overload_BClass_Impl.hh"
#endif
|