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
|
//
// File: decaf_ports_ComponentRepository_Impl.hh
// Symbol: decaf.ports.ComponentRepository-v0.6.3
// Symbol Type: class
// Babel Version: 0.10.2
// Description: Server-side implementation for decaf.ports.ComponentRepository
//
// WARNING: Automatically generated; only changes within splicers preserved
//
// babel-version = 0.10.2
//
#ifndef included_decaf_ports_ComponentRepository_Impl_hh
#define included_decaf_ports_ComponentRepository_Impl_hh
#ifndef included_sidl_cxx_hh
#include "sidl_cxx.hh"
#endif
#ifndef included_decaf_ports_ComponentRepository_IOR_h
#include "decaf_ports_ComponentRepository_IOR.h"
#endif
//
// Includes for all method dependencies.
//
#ifndef included_decaf_ports_ComponentRepository_hh
#include "decaf_ports_ComponentRepository.hh"
#endif
#ifndef included_gov_cca_CCAException_hh
#include "gov_cca_CCAException.hh"
#endif
#ifndef included_gov_cca_ComponentClassDescription_hh
#include "gov_cca_ComponentClassDescription.hh"
#endif
#ifndef included_sidl_BaseInterface_hh
#include "sidl_BaseInterface.hh"
#endif
#ifndef included_sidl_ClassInfo_hh
#include "sidl_ClassInfo.hh"
#endif
#line 42 "../../../../babel/examples/cca/libdecaf/decaf_ports_ComponentRepository_Impl.hh"
// DO-NOT-DELETE splicer.begin(decaf.ports.ComponentRepository._includes)
// Put additional includes or other arbitrary code here...
// DO-NOT-DELETE splicer.end(decaf.ports.ComponentRepository._includes)
#line 46 "decaf_ports_ComponentRepository_Impl.hh"
namespace decaf {
namespace ports {
/**
* Symbol "decaf.ports.ComponentRepository" (version 0.6.3)
*/
class ComponentRepository_impl
#line 53 "../../../../babel/examples/cca/libdecaf/decaf_ports_ComponentRepository_Impl.hh"
// DO-NOT-DELETE splicer.begin(decaf.ports.ComponentRepository._inherits)
// Put additional inheritance here...
// DO-NOT-DELETE splicer.end(decaf.ports.ComponentRepository._inherits)
#line 59 "decaf_ports_ComponentRepository_Impl.hh"
{
private:
// Pointer back to IOR.
// Use this to dispatch back through IOR vtable.
ComponentRepository self;
#line 63 "../../../../babel/examples/cca/libdecaf/decaf_ports_ComponentRepository_Impl.hh"
// DO-NOT-DELETE splicer.begin(decaf.ports.ComponentRepository._implementation)
// Put additional implementation details here...
// DO-NOT-DELETE splicer.end(decaf.ports.ComponentRepository._implementation)
#line 71 "decaf_ports_ComponentRepository_Impl.hh"
private:
// private default constructor (required)
ComponentRepository_impl()
{}
public:
// sidl constructor (required)
// Note: alternate Skel constructor doesn't call addref()
// (fixes bug #275)
ComponentRepository_impl( struct decaf_ports_ComponentRepository__object
* s ) : self(s,true) { _ctor(); }
// user defined construction
void _ctor();
// virtual destructor (required)
virtual ~ComponentRepository_impl() { _dtor(); }
// user defined destruction
void _dtor();
// static class initializer
static void _load();
public:
/**
* Collect the currently obtainable class name strings from
* factories known to the builder and the from the
* already instantiated components.
* @return The list of class description, which may be empty, that are
* known a priori to contain valid values for the className
* argument of createInstance.
* @throws CCAException in the event of error.
*/
::sidl::array< ::gov::cca::ComponentClassDescription>
getAvailableComponentClasses() throw (
::gov::cca::CCAException
);
}; // end class ComponentRepository_impl
} // end namespace ports
} // end namespace decaf
#line 112 "../../../../babel/examples/cca/libdecaf/decaf_ports_ComponentRepository_Impl.hh"
// DO-NOT-DELETE splicer.begin(decaf.ports.ComponentRepository._misc)
// Put miscellaneous things here...
// DO-NOT-DELETE splicer.end(decaf.ports.ComponentRepository._misc)
#line 122 "decaf_ports_ComponentRepository_Impl.hh"
#endif
|