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
|
/*
* File: objarg_EmployeeArray_Impl.h
* Symbol: objarg.EmployeeArray-v0.5
* Symbol Type: class
* Babel Version: 0.10.2
* Description: Server-side implementation for objarg.EmployeeArray
*
* WARNING: Automatically generated; only changes within splicers preserved
*
* babel-version = 0.10.2
*/
#ifndef included_objarg_EmployeeArray_Impl_h
#define included_objarg_EmployeeArray_Impl_h
#ifndef included_sidl_header_h
#include "sidl_header.h"
#endif
#ifndef included_objarg_EmployeeArray_h
#include "objarg_EmployeeArray.h"
#endif
#ifndef included_objarg_Employee_h
#include "objarg_Employee.h"
#endif
#line 26 "../../../../babel/regression/objarg/libC/objarg_EmployeeArray_Impl.h"
/* DO-NOT-DELETE splicer.begin(objarg.EmployeeArray._includes) */
/* Put additional include files here... */
/* DO-NOT-DELETE splicer.end(objarg.EmployeeArray._includes) */
#line 30 "objarg_EmployeeArray_Impl.h"
/*
* Private data for class objarg.EmployeeArray
*/
struct objarg_EmployeeArray__data {
#line 35 "../../../../babel/regression/objarg/libC/objarg_EmployeeArray_Impl.h"
/* DO-NOT-DELETE splicer.begin(objarg.EmployeeArray._data) */
objarg_Employee *d_employees;
int32_t d_length;
int32_t d_capacity;
/* DO-NOT-DELETE splicer.end(objarg.EmployeeArray._data) */
#line 43 "objarg_EmployeeArray_Impl.h"
};
#ifdef __cplusplus
extern "C" {
#endif
/*
* Access functions for class private data and built-in methods
*/
extern struct objarg_EmployeeArray__data*
objarg_EmployeeArray__get_data(
objarg_EmployeeArray);
extern void
objarg_EmployeeArray__set_data(
objarg_EmployeeArray,
struct objarg_EmployeeArray__data*);
extern void
impl_objarg_EmployeeArray__load(
void);
extern void
impl_objarg_EmployeeArray__ctor(
/* in */ objarg_EmployeeArray self);
extern void
impl_objarg_EmployeeArray__dtor(
/* in */ objarg_EmployeeArray self);
/*
* User-defined object methods
*/
extern int32_t
impl_objarg_EmployeeArray_getLength(
/* in */ objarg_EmployeeArray self);
extern objarg_Employee
impl_objarg_EmployeeArray_at(
/* in */ objarg_EmployeeArray self,
/* in */ int32_t index);
extern sidl_bool
impl_objarg_EmployeeArray_appendEmployee(
/* in */ objarg_EmployeeArray self,
/* in */ objarg_Employee e);
extern int32_t
impl_objarg_EmployeeArray_findByName(
/* in */ objarg_EmployeeArray self,
/* in */ const char* name,
/* out */ objarg_Employee* e);
extern sidl_bool
impl_objarg_EmployeeArray_promoteToMaxSalary(
/* in */ objarg_EmployeeArray self,
/* inout */ objarg_Employee* e);
#ifdef __cplusplus
}
#endif
#endif
|