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
|
//
// File: ExceptionTest_NegativeValueException_Impl.hh
// Symbol: ExceptionTest.NegativeValueException-v1.0
// Symbol Type: class
// Babel Version: 0.10.2
// Description: Server-side implementation for ExceptionTest.NegativeValueException
//
// WARNING: Automatically generated; only changes within splicers preserved
//
// babel-version = 0.10.2
//
#ifndef included_ExceptionTest_NegativeValueException_Impl_hh
#define included_ExceptionTest_NegativeValueException_Impl_hh
#ifndef included_sidl_ucxx_hh
#include "sidl_ucxx.hh"
#endif
#ifndef included_ExceptionTest_NegativeValueException_IOR_h
#include "ExceptionTest_NegativeValueException_IOR.h"
#endif
#ifndef included_ExceptionTest_NegativeValueException_hh
#include "ExceptionTest_NegativeValueException.hh"
#endif
#ifndef included_sidl_SIDLException_hh
#include "sidl_SIDLException.hh"
#endif
#line 30 "../../../../babel/regression/exceptions/libUCxx/ExceptionTest_NegativeValueException_Impl.hh"
// DO-NOT-DELETE splicer.begin(ExceptionTest.NegativeValueException._includes)
// Put additional includes or other arbitrary code here...
// DO-NOT-DELETE splicer.end(ExceptionTest.NegativeValueException._includes)
#line 34 "ExceptionTest_NegativeValueException_Impl.hh"
namespace ExceptionTest {
/**
* Symbol "ExceptionTest.NegativeValueException" (version 1.0)
*
* This exception is thrown if the value for which the Fibonacci number
* is requested is negative.
*/
class NegativeValueException_impl : public virtual
::ucxx::ExceptionTest::NegativeValueException
#line 44 "../../../../babel/regression/exceptions/libUCxx/ExceptionTest_NegativeValueException_Impl.hh"
// DO-NOT-DELETE splicer.begin(ExceptionTest.NegativeValueException._inherits)
// Put additional inheritance here...
// DO-NOT-DELETE splicer.end(ExceptionTest.NegativeValueException._inherits)
#line 50 "ExceptionTest_NegativeValueException_Impl.hh"
{
// All data marked protected will be accessable by
// descendant Impl classes
protected:
#line 53 "../../../../babel/regression/exceptions/libUCxx/ExceptionTest_NegativeValueException_Impl.hh"
// DO-NOT-DELETE splicer.begin(ExceptionTest.NegativeValueException._implementation)
// Put additional implementation details here...
// DO-NOT-DELETE splicer.end(ExceptionTest.NegativeValueException._implementation)
#line 61 "ExceptionTest_NegativeValueException_Impl.hh"
public:
// default constructor, shouldn't be used (required)
NegativeValueException_impl() : StubBase(0,true) { }
// sidl constructor (required)
// Note: alternate Skel constructor doesn't call addref()
// (fixes bug #275)
NegativeValueException_impl( struct
ExceptionTest_NegativeValueException__object * s ) : StubBase(s,
true) { _ctor(); }
// user defined construction
void _ctor();
// virtual destructor (required)
virtual ~NegativeValueException_impl() { _dtor(); }
// user defined destruction
void _dtor();
// static class initializer
static void _load();
public:
}; // end class NegativeValueException_impl
} // end namespace ExceptionTest
#line 86 "../../../../babel/regression/exceptions/libUCxx/ExceptionTest_NegativeValueException_Impl.hh"
// DO-NOT-DELETE splicer.begin(ExceptionTest.NegativeValueException._misc)
// Put miscellaneous things here...
// DO-NOT-DELETE splicer.end(ExceptionTest.NegativeValueException._misc)
#line 96 "ExceptionTest_NegativeValueException_Impl.hh"
#endif
|