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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
/*
* File: Args_Cdouble_Impl.c
* Symbol: Args.Cdouble-v1.0
* Symbol Type: class
* Babel Version: 0.10.2
* Description: Server-side implementation for Args.Cdouble
*
* WARNING: Automatically generated; only changes within splicers preserved
*
* babel-version = 0.10.2
*/
/*
* DEVELOPERS ARE EXPECTED TO PROVIDE IMPLEMENTATIONS
* FOR THE FOLLOWING METHODS BETWEEN SPLICER PAIRS.
*/
/*
* Symbol "Args.Cdouble" (version 1.0)
*/
#include "Args_Cdouble_Impl.h"
#line 24 "../../../../babel/regression/args/libC/Args_Cdouble_Impl.c"
/* DO-NOT-DELETE splicer.begin(Args.Cdouble._includes) */
/* Put additional includes or other arbitrary code here... */
/* DO-NOT-DELETE splicer.end(Args.Cdouble._includes) */
#line 28 "Args_Cdouble_Impl.c"
/*
* Static class initializer called exactly once before any user-defined method is dispatched
*/
#undef __FUNC__
#define __FUNC__ "impl_Args_Cdouble__load"
void
impl_Args_Cdouble__load(
void)
{
#line 39 "../../../../babel/regression/args/libC/Args_Cdouble_Impl.c"
/* DO-NOT-DELETE splicer.begin(Args.Cdouble._load) */
/* Insert the implementation of the static class initializer method here... */
/* DO-NOT-DELETE splicer.end(Args.Cdouble._load) */
#line 45 "Args_Cdouble_Impl.c"
}
/*
* Class constructor called when the class is created.
*/
#undef __FUNC__
#define __FUNC__ "impl_Args_Cdouble__ctor"
void
impl_Args_Cdouble__ctor(
/* in */ Args_Cdouble self)
{
#line 54 "../../../../babel/regression/args/libC/Args_Cdouble_Impl.c"
/* DO-NOT-DELETE splicer.begin(Args.Cdouble._ctor) */
/* Insert the implementation of the constructor method here... */
/* DO-NOT-DELETE splicer.end(Args.Cdouble._ctor) */
#line 62 "Args_Cdouble_Impl.c"
}
/*
* Class destructor called when the class is deleted.
*/
#undef __FUNC__
#define __FUNC__ "impl_Args_Cdouble__dtor"
void
impl_Args_Cdouble__dtor(
/* in */ Args_Cdouble self)
{
#line 70 "../../../../babel/regression/args/libC/Args_Cdouble_Impl.c"
/* DO-NOT-DELETE splicer.begin(Args.Cdouble._dtor) */
/* Insert the implementation of the constructor method here... */
/* DO-NOT-DELETE splicer.end(Args.Cdouble._dtor) */
#line 80 "Args_Cdouble_Impl.c"
}
/*
* Method: returnback[]
*/
#undef __FUNC__
#define __FUNC__ "impl_Args_Cdouble_returnback"
double
impl_Args_Cdouble_returnback(
/* in */ Args_Cdouble self)
{
#line 86 "../../../../babel/regression/args/libC/Args_Cdouble_Impl.c"
/* DO-NOT-DELETE splicer.begin(Args.Cdouble.returnback) */
return 3.14;
/* DO-NOT-DELETE splicer.end(Args.Cdouble.returnback) */
#line 98 "Args_Cdouble_Impl.c"
}
/*
* Method: passin[]
*/
#undef __FUNC__
#define __FUNC__ "impl_Args_Cdouble_passin"
sidl_bool
impl_Args_Cdouble_passin(
/* in */ Args_Cdouble self,
/* in */ double d)
{
#line 103 "../../../../babel/regression/args/libC/Args_Cdouble_Impl.c"
/* DO-NOT-DELETE splicer.begin(Args.Cdouble.passin) */
return (d == 3.14);
/* DO-NOT-DELETE splicer.end(Args.Cdouble.passin) */
#line 117 "Args_Cdouble_Impl.c"
}
/*
* Method: passout[]
*/
#undef __FUNC__
#define __FUNC__ "impl_Args_Cdouble_passout"
sidl_bool
impl_Args_Cdouble_passout(
/* in */ Args_Cdouble self,
/* out */ double* d)
{
#line 120 "../../../../babel/regression/args/libC/Args_Cdouble_Impl.c"
/* DO-NOT-DELETE splicer.begin(Args.Cdouble.passout) */
*d = 3.14;
return TRUE;
/* DO-NOT-DELETE splicer.end(Args.Cdouble.passout) */
#line 137 "Args_Cdouble_Impl.c"
}
/*
* Method: passinout[]
*/
#undef __FUNC__
#define __FUNC__ "impl_Args_Cdouble_passinout"
sidl_bool
impl_Args_Cdouble_passinout(
/* in */ Args_Cdouble self,
/* inout */ double* d)
{
#line 138 "../../../../babel/regression/args/libC/Args_Cdouble_Impl.c"
/* DO-NOT-DELETE splicer.begin(Args.Cdouble.passinout) */
*d = - (*d);
return TRUE;
/* DO-NOT-DELETE splicer.end(Args.Cdouble.passinout) */
#line 157 "Args_Cdouble_Impl.c"
}
/*
* Method: passeverywhere[]
*/
#undef __FUNC__
#define __FUNC__ "impl_Args_Cdouble_passeverywhere"
double
impl_Args_Cdouble_passeverywhere(
/* in */ Args_Cdouble self,
/* in */ double d1,
/* out */ double* d2,
/* inout */ double* d3)
{
#line 158 "../../../../babel/regression/args/libC/Args_Cdouble_Impl.c"
/* DO-NOT-DELETE splicer.begin(Args.Cdouble.passeverywhere) */
*d2 = 3.14;
*d3 = - (*d3);
return (d1 == 3.14) ? 3.14 : 0.0;
/* DO-NOT-DELETE splicer.end(Args.Cdouble.passeverywhere) */
#line 180 "Args_Cdouble_Impl.c"
}
|