DemoServantImp.cpp 351 B

12345678910111213141516171819
  1. #include "DemoServantImp.h"
  2. #include "servant/Application.h"
  3. using namespace std;
  4. //////////////////////////////////////////////////////
  5. void DemoServantImp::initialize()
  6. {
  7. //initialize servant here:
  8. //...
  9. }
  10. //////////////////////////////////////////////////////
  11. void DemoServantImp::destroy()
  12. {
  13. //destroy servant here:
  14. //...
  15. }