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
|
/*
* File: ExceptionTest_Fib_Impl.h
* Symbol: ExceptionTest.Fib-v1.0
* Symbol Type: class
* Babel Version: 0.10.2
* Description: Server-side implementation for ExceptionTest.Fib
*
* WARNING: Automatically generated; only changes within splicers preserved
*
* babel-version = 0.10.2
*/
#ifndef included_ExceptionTest_Fib_Impl_h
#define included_ExceptionTest_Fib_Impl_h
#ifndef included_sidl_header_h
#include "sidl_header.h"
#endif
#ifndef included_ExceptionTest_Fib_h
#include "ExceptionTest_Fib.h"
#endif
#ifndef included_ExceptionTest_NegativeValueException_h
#include "ExceptionTest_NegativeValueException.h"
#endif
#ifndef included_ExceptionTest_FibException_h
#include "ExceptionTest_FibException.h"
#endif
#ifndef included_sidl_BaseException_h
#include "sidl_BaseException.h"
#endif
#line 32 "../../../../babel/regression/exceptions/libC/ExceptionTest_Fib_Impl.h"
/* DO-NOT-DELETE splicer.begin(ExceptionTest.Fib._includes) */
/* Put additional include files here... */
/* DO-NOT-DELETE splicer.end(ExceptionTest.Fib._includes) */
#line 36 "ExceptionTest_Fib_Impl.h"
/*
* Private data for class ExceptionTest.Fib
*/
struct ExceptionTest_Fib__data {
#line 41 "../../../../babel/regression/exceptions/libC/ExceptionTest_Fib_Impl.h"
/* DO-NOT-DELETE splicer.begin(ExceptionTest.Fib._data) */
/* Put private data members here... */
int ignore; /* dummy to force non-empty struct; remove if you add data */
/* DO-NOT-DELETE splicer.end(ExceptionTest.Fib._data) */
#line 48 "ExceptionTest_Fib_Impl.h"
};
#ifdef __cplusplus
extern "C" {
#endif
/*
* Access functions for class private data and built-in methods
*/
extern struct ExceptionTest_Fib__data*
ExceptionTest_Fib__get_data(
ExceptionTest_Fib);
extern void
ExceptionTest_Fib__set_data(
ExceptionTest_Fib,
struct ExceptionTest_Fib__data*);
extern void
impl_ExceptionTest_Fib__load(
void);
extern void
impl_ExceptionTest_Fib__ctor(
/* in */ ExceptionTest_Fib self);
extern void
impl_ExceptionTest_Fib__dtor(
/* in */ ExceptionTest_Fib self);
/*
* User-defined object methods
*/
extern int32_t
impl_ExceptionTest_Fib_getFib(
/* in */ ExceptionTest_Fib self,
/* in */ int32_t n,
/* in */ int32_t max_depth,
/* in */ int32_t max_value,
/* in */ int32_t depth,
/* out */ sidl_BaseInterface *_ex);
#ifdef __cplusplus
}
#endif
#endif
|