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
|
/*
* File: sort_CompInt_Impl.h
* Symbol: sort.CompInt-v0.1
* Symbol Type: class
* Babel Version: 0.10.2
* Description: Server-side implementation for sort.CompInt
*
* WARNING: Automatically generated; only changes within splicers preserved
*
* babel-version = 0.10.2
*/
#ifndef included_sort_CompInt_Impl_h
#define included_sort_CompInt_Impl_h
#ifndef included_sidl_header_h
#include "sidl_header.h"
#endif
#ifndef included_sort_CompInt_h
#include "sort_CompInt.h"
#endif
#ifndef included_sidl_BaseInterface_h
#include "sidl_BaseInterface.h"
#endif
#line 26 "../../../../babel/regression/sort/libC/sort_CompInt_Impl.h"
/* DO-NOT-DELETE splicer.begin(sort.CompInt._includes) */
/* Put additional include files here... */
/* DO-NOT-DELETE splicer.end(sort.CompInt._includes) */
#line 30 "sort_CompInt_Impl.h"
/*
* Private data for class sort.CompInt
*/
struct sort_CompInt__data {
#line 35 "../../../../babel/regression/sort/libC/sort_CompInt_Impl.h"
/* DO-NOT-DELETE splicer.begin(sort.CompInt._data) */
sidl_bool d_increasing;
/* DO-NOT-DELETE splicer.end(sort.CompInt._data) */
#line 41 "sort_CompInt_Impl.h"
};
#ifdef __cplusplus
extern "C" {
#endif
/*
* Access functions for class private data and built-in methods
*/
extern struct sort_CompInt__data*
sort_CompInt__get_data(
sort_CompInt);
extern void
sort_CompInt__set_data(
sort_CompInt,
struct sort_CompInt__data*);
extern void
impl_sort_CompInt__load(
void);
extern void
impl_sort_CompInt__ctor(
/* in */ sort_CompInt self);
extern void
impl_sort_CompInt__dtor(
/* in */ sort_CompInt self);
/*
* User-defined object methods
*/
extern void
impl_sort_CompInt_setSortIncreasing(
/* in */ sort_CompInt self,
/* in */ sidl_bool increasing);
extern int32_t
impl_sort_CompInt_compare(
/* in */ sort_CompInt self,
/* in */ sidl_BaseInterface i1,
/* in */ sidl_BaseInterface i2);
#ifdef __cplusplus
}
#endif
#endif
|