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
|
//
// File: Hello_World_Impl.cc
// Symbol: Hello.World-v1.2
// Symbol Type: class
// Babel Version: 0.10.2
// Description: Server-side implementation for Hello.World
//
// WARNING: Automatically generated; only changes within splicers preserved
//
// babel-version = 0.10.2
//
#include "Hello_World_Impl.hh"
#line 14 "../../../../babel/examples/hello/libCxx/Hello_World_Impl.cc"
// DO-NOT-DELETE splicer.begin(Hello.World._includes)
// nothing needed
// DO-NOT-DELETE splicer.end(Hello.World._includes)
#line 18 "Hello_World_Impl.cc"
// user-defined constructor.
void Hello::World_impl::_ctor() {
#line 20 "../../../../babel/examples/hello/libCxx/Hello_World_Impl.cc"
// DO-NOT-DELETE splicer.begin(Hello.World._ctor)
// nothing needed
// DO-NOT-DELETE splicer.end(Hello.World._ctor)
#line 26 "Hello_World_Impl.cc"
}
// user-defined destructor.
void Hello::World_impl::_dtor() {
#line 27 "../../../../babel/examples/hello/libCxx/Hello_World_Impl.cc"
// DO-NOT-DELETE splicer.begin(Hello.World._dtor)
// nothing needed
// DO-NOT-DELETE splicer.end(Hello.World._dtor)
#line 35 "Hello_World_Impl.cc"
}
// static class initializer.
void Hello::World_impl::_load() {
#line 34 "../../../../babel/examples/hello/libCxx/Hello_World_Impl.cc"
// DO-NOT-DELETE splicer.begin(Hello.World._load)
// guaranteed to be called at most once before any other method in this class
// DO-NOT-DELETE splicer.end(Hello.World._load)
#line 44 "Hello_World_Impl.cc"
}
// user-defined static methods: (none)
// user-defined non-static methods:
/**
* Method: getMsg[]
*/
::std::string
Hello::World_impl::getMsg ()
throw ()
{
#line 50 "../../../../babel/examples/hello/libCxx/Hello_World_Impl.cc"
// DO-NOT-DELETE splicer.begin(Hello.World.getMsg)
return std::string ("Hello world!");
// DO-NOT-DELETE splicer.end(Hello.World.getMsg)
#line 62 "Hello_World_Impl.cc"
}
#line 56 "../../../../babel/examples/hello/libCxx/Hello_World_Impl.cc"
// DO-NOT-DELETE splicer.begin(Hello.World._misc)
// nothing needed
// DO-NOT-DELETE splicer.end(Hello.World._misc)
#line 70 "Hello_World_Impl.cc"
|