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
|
/*
* File: sort_QuickSort_Impl.h
* Symbol: sort.QuickSort-v0.1
* Symbol Type: class
* Babel Version: 0.10.2
* Description: Server-side implementation for sort.QuickSort
*
* WARNING: Automatically generated; only changes within splicers preserved
*
* babel-version = 0.10.2
*/
#ifndef included_sort_QuickSort_Impl_h
#define included_sort_QuickSort_Impl_h
#ifndef included_sidl_header_h
#include "sidl_header.h"
#endif
#ifndef included_sort_QuickSort_h
#include "sort_QuickSort.h"
#endif
#ifndef included_sort_Comparator_h
#include "sort_Comparator.h"
#endif
#ifndef included_sort_Container_h
#include "sort_Container.h"
#endif
#line 29 "../../../../babel/regression/sort/libC/sort_QuickSort_Impl.h"
/* DO-NOT-DELETE splicer.begin(sort.QuickSort._includes) */
/* Put additional include files here... */
/* DO-NOT-DELETE splicer.end(sort.QuickSort._includes) */
#line 33 "sort_QuickSort_Impl.h"
/*
* Private data for class sort.QuickSort
*/
struct sort_QuickSort__data {
#line 38 "../../../../babel/regression/sort/libC/sort_QuickSort_Impl.h"
/* DO-NOT-DELETE splicer.begin(sort.QuickSort._data) */
/* Put private data members here... */
int ignore; /* dummy to force non-empty struct; remove if you add data */
/* DO-NOT-DELETE splicer.end(sort.QuickSort._data) */
#line 45 "sort_QuickSort_Impl.h"
};
#ifdef __cplusplus
extern "C" {
#endif
/*
* Access functions for class private data and built-in methods
*/
extern struct sort_QuickSort__data*
sort_QuickSort__get_data(
sort_QuickSort);
extern void
sort_QuickSort__set_data(
sort_QuickSort,
struct sort_QuickSort__data*);
extern void
impl_sort_QuickSort__load(
void);
extern void
impl_sort_QuickSort__ctor(
/* in */ sort_QuickSort self);
extern void
impl_sort_QuickSort__dtor(
/* in */ sort_QuickSort self);
/*
* User-defined object methods
*/
extern void
impl_sort_QuickSort_sort(
/* in */ sort_QuickSort self,
/* in */ sort_Container elems,
/* in */ sort_Comparator comp);
extern char*
impl_sort_QuickSort_getName(
/* in */ sort_QuickSort self);
#ifdef __cplusplus
}
#endif
#endif
|