DemoServantImp.h 508 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef _DemoServantImp_H_
  2. #define _DemoServantImp_H_
  3. #include "servant/Application.h"
  4. #include "DemoServant.h"
  5. /**
  6. *
  7. *
  8. */
  9. class DemoServantImp : public DemoApp::DemoServant
  10. {
  11. public:
  12. /**
  13. *
  14. */
  15. virtual ~DemoServantImp() {}
  16. /**
  17. *
  18. */
  19. virtual void initialize();
  20. /**
  21. *
  22. */
  23. virtual void destroy();
  24. /**
  25. *
  26. */
  27. virtual int test(tars::TarsCurrentPtr current) { return 0;};
  28. };
  29. /////////////////////////////////////////////////////
  30. #endif