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 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
|
//
// File: Ordering_IntOrderTest_Impl.hh
// Symbol: Ordering.IntOrderTest-v0.1
// Symbol Type: class
// Babel Version: 0.10.2
// Description: Server-side implementation for Ordering.IntOrderTest
//
// WARNING: Automatically generated; only changes within splicers preserved
//
// babel-version = 0.10.2
//
#ifndef included_Ordering_IntOrderTest_Impl_hh
#define included_Ordering_IntOrderTest_Impl_hh
#ifndef included_sidl_ucxx_hh
#include "sidl_ucxx.hh"
#endif
#ifndef included_Ordering_IntOrderTest_IOR_h
#include "Ordering_IntOrderTest_IOR.h"
#endif
#ifndef included_Ordering_IntOrderTest_hh
#include "Ordering_IntOrderTest.hh"
#endif
#ifndef included_sidl_BaseClass_hh
#include "sidl_BaseClass.hh"
#endif
#line 30 "../../../../babel/regression/ordering/libUCxx/Ordering_IntOrderTest_Impl.hh"
// DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest._includes)
// Put additional includes or other arbitrary code here...
// DO-NOT-DELETE splicer.end(Ordering.IntOrderTest._includes)
#line 34 "Ordering_IntOrderTest_Impl.hh"
namespace Ordering {
/**
* Symbol "Ordering.IntOrderTest" (version 0.1)
*
* This class provides methods to verify that the array ordering
* capabilities work for arrays of int.
*/
class IntOrderTest_impl : public virtual ::ucxx::Ordering::IntOrderTest
#line 43 "../../../../babel/regression/ordering/libUCxx/Ordering_IntOrderTest_Impl.hh"
// DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest._inherits)
// Put additional inheritance here...
// DO-NOT-DELETE splicer.end(Ordering.IntOrderTest._inherits)
#line 49 "Ordering_IntOrderTest_Impl.hh"
{
// All data marked protected will be accessable by
// descendant Impl classes
protected:
#line 52 "../../../../babel/regression/ordering/libUCxx/Ordering_IntOrderTest_Impl.hh"
// DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest._implementation)
// Put additional implementation details here...
// DO-NOT-DELETE splicer.end(Ordering.IntOrderTest._implementation)
#line 60 "Ordering_IntOrderTest_Impl.hh"
public:
// default constructor, shouldn't be used (required)
IntOrderTest_impl() : StubBase(0,true) { }
// sidl constructor (required)
// Note: alternate Skel constructor doesn't call addref()
// (fixes bug #275)
IntOrderTest_impl( struct Ordering_IntOrderTest__object * s ) :
StubBase(s,true) { _ctor(); }
// user defined construction
void _ctor();
// virtual destructor (required)
virtual ~IntOrderTest_impl() { _dtor(); }
// user defined destruction
void _dtor();
// static class initializer
static void _load();
public:
/**
* Create a column-major matrix satisfying condition I.
*/
static ::ucxx::sidl::array<int32_t>
makeColumnIMatrix_impl (
/* in */int32_t size,
/* in */bool useCreateCol
)
throw ()
;
/**
* Create a row-major matrix satisfying condition I.
*/
static ::ucxx::sidl::array<int32_t>
makeRowIMatrix_impl (
/* in */int32_t size,
/* in */bool useCreateRow
)
throw ()
;
/**
* Create a 4-D matrix satisfying condition I. Each dimension has
* size elements numbers 0 through size-1.
*/
static ::ucxx::sidl::array<int32_t>
makeIMatrix_impl (
/* in */int32_t size,
/* in */bool useCreateColumn
)
throw ()
;
/**
* Create a column-major matrix satisfying condition I.
*/
static void
createColumnIMatrix_impl (
/* in */int32_t size,
/* in */bool useCreateCol,
/* out */::ucxx::sidl::array<int32_t>& res
)
throw ()
;
/**
* Create a row-major matrix satisfying condition I.
*/
static void
createRowIMatrix_impl (
/* in */int32_t size,
/* in */bool useCreateRow,
/* out */::ucxx::sidl::array<int32_t>& res
)
throw ()
;
/**
* Make sure an array is column-major. No changes to the dimension or
* values in a are made.
*/
static void
ensureColumn_impl (
/* inout */::ucxx::sidl::array<int32_t>& a
)
throw ()
;
/**
* Make sure an array is row-major. No changes to the dimension or
* values in a are made.
*/
static void
ensureRow_impl (
/* inout */::ucxx::sidl::array<int32_t>& a
)
throw ()
;
/**
* Return <code>true</code> iff the implementation sees
* an incoming array satisfying condition I.
*/
static bool
isIMatrixOne_impl (
/* in */::ucxx::sidl::array<int32_t> A
)
throw ()
;
/**
* Return <code>true</code> iff the implementation sees
* an incoming column-major array satisfying condition I.
*/
static bool
isColumnIMatrixOne_impl (
/* in */::ucxx::sidl::array<int32_t> A
)
throw ()
;
/**
* Return <code>true</code> iff the implementation sees
* an incoming row-major array satisfying condition I.
*/
static bool
isRowIMatrixOne_impl (
/* in */::ucxx::sidl::array<int32_t> A
)
throw ()
;
/**
* Return <code>true</code> iff the implementation sees
* an incoming array satisfying condition I.
*/
static bool
isIMatrixTwo_impl (
/* in */::ucxx::sidl::array<int32_t> A
)
throw ()
;
/**
* Return <code>true</code> iff the implementation sees
* an incoming column-major array satisfying condition I.
*/
static bool
isColumnIMatrixTwo_impl (
/* in */::ucxx::sidl::array<int32_t> A
)
throw ()
;
/**
* Return <code>true</code> iff the implementation sees
* an incoming row-major array satisfying condition I.
*/
static bool
isRowIMatrixTwo_impl (
/* in */::ucxx::sidl::array<int32_t> A
)
throw ()
;
/**
* Return <code>true</code> iff the implementation sees
* an incoming array satisfying condition I.
*/
static bool
isIMatrixFour_impl (
/* in */::ucxx::sidl::array<int32_t> A
)
throw ()
;
/**
* Return <code>true</code> iff the implementation sees
* an incoming column-major array satisfying condition I.
*/
static bool
isColumnIMatrixFour_impl (
/* in */::ucxx::sidl::array<int32_t> A
)
throw ()
;
/**
* Return <code>true</code> iff the implementation sees
* an incoming row-major array satisfying condition I.
*/
static bool
isRowIMatrixFour_impl (
/* in */::ucxx::sidl::array<int32_t> A
)
throw ()
;
/**
* Return <code>true</code> iff the implementation of slice
* and smart copy is correct.
*/
static bool
isSliceWorking_impl (
/* in */bool useCreateCol
)
throw ()
;
}; // end class IntOrderTest_impl
} // end namespace Ordering
#line 291 "../../../../babel/regression/ordering/libUCxx/Ordering_IntOrderTest_Impl.hh"
// DO-NOT-DELETE splicer.begin(Ordering.IntOrderTest._misc)
// Put miscellaneous things here...
// DO-NOT-DELETE splicer.end(Ordering.IntOrderTest._misc)
#line 301 "Ordering_IntOrderTest_Impl.hh"
#endif
|