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
|
//
// File: sort_SimpleCounter_Impl.cc
// Symbol: sort.SimpleCounter-v0.1
// Symbol Type: class
// Babel Version: 0.10.2
// Description: Server-side implementation for sort.SimpleCounter
//
// WARNING: Automatically generated; only changes within splicers preserved
//
// babel-version = 0.10.2
//
#include "sort_SimpleCounter_Impl.hh"
//
// Includes for all method dependencies.
//
#ifndef included_sidl_BaseInterface_hh
#include "sidl_BaseInterface.hh"
#endif
#ifndef included_sidl_ClassInfo_hh
#include "sidl_ClassInfo.hh"
#endif
#line 23 "../../../../babel/regression/sort/libUCxx/sort_SimpleCounter_Impl.cc"
// DO-NOT-DELETE splicer.begin(sort.SimpleCounter._includes)
// Put additional includes or other arbitrary code here...
// DO-NOT-DELETE splicer.end(sort.SimpleCounter._includes)
#line 27 "sort_SimpleCounter_Impl.cc"
// user defined constructor
void sort::SimpleCounter_impl::_ctor() {
#line 29 "../../../../babel/regression/sort/libUCxx/sort_SimpleCounter_Impl.cc"
// DO-NOT-DELETE splicer.begin(sort.SimpleCounter._ctor)
d_counter = 0;
// DO-NOT-DELETE splicer.end(sort.SimpleCounter._ctor)
#line 35 "sort_SimpleCounter_Impl.cc"
}
// user defined destructor
void sort::SimpleCounter_impl::_dtor() {
#line 36 "../../../../babel/regression/sort/libUCxx/sort_SimpleCounter_Impl.cc"
// DO-NOT-DELETE splicer.begin(sort.SimpleCounter._dtor)
// add destruction details here
// DO-NOT-DELETE splicer.end(sort.SimpleCounter._dtor)
#line 44 "sort_SimpleCounter_Impl.cc"
}
// static class initializer
void sort::SimpleCounter_impl::_load() {
#line 43 "../../../../babel/regression/sort/libUCxx/sort_SimpleCounter_Impl.cc"
// DO-NOT-DELETE splicer.begin(sort.SimpleCounter._load)
// guaranteed to be called at most once before any other method in this class
// DO-NOT-DELETE splicer.end(sort.SimpleCounter._load)
#line 53 "sort_SimpleCounter_Impl.cc"
}
// user defined static methods: (none)
// user defined non-static methods:
/**
* Set the count to zero.
*/
void
sort::SimpleCounter_impl::reset_impl ()
throw ()
{
#line 59 "../../../../babel/regression/sort/libUCxx/sort_SimpleCounter_Impl.cc"
// DO-NOT-DELETE splicer.begin(sort.SimpleCounter.reset)
d_counter = 0;
// DO-NOT-DELETE splicer.end(sort.SimpleCounter.reset)
#line 71 "sort_SimpleCounter_Impl.cc"
}
/**
* Return the current count.
*/
int32_t
sort::SimpleCounter_impl::getCount_impl ()
throw ()
{
#line 72 "../../../../babel/regression/sort/libUCxx/sort_SimpleCounter_Impl.cc"
// DO-NOT-DELETE splicer.begin(sort.SimpleCounter.getCount)
return d_counter;
// DO-NOT-DELETE splicer.end(sort.SimpleCounter.getCount)
#line 86 "sort_SimpleCounter_Impl.cc"
}
/**
* Increment the count (i.e. add one).
*/
int32_t
sort::SimpleCounter_impl::inc_impl ()
throw ()
{
#line 85 "../../../../babel/regression/sort/libUCxx/sort_SimpleCounter_Impl.cc"
// DO-NOT-DELETE splicer.begin(sort.SimpleCounter.inc)
return ++d_counter;
// DO-NOT-DELETE splicer.end(sort.SimpleCounter.inc)
#line 101 "sort_SimpleCounter_Impl.cc"
}
#line 91 "../../../../babel/regression/sort/libUCxx/sort_SimpleCounter_Impl.cc"
// DO-NOT-DELETE splicer.begin(sort.SimpleCounter._misc)
// Put miscellaneous code here
// DO-NOT-DELETE splicer.end(sort.SimpleCounter._misc)
#line 109 "sort_SimpleCounter_Impl.cc"
|