AServantImp.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /**
  2. * Tencent is pleased to support the open source community by making Tars available.
  3. *
  4. * Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
  5. *
  6. * Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
  7. * in compliance with the License. You may obtain a copy of the License at
  8. *
  9. * https://opensource.org/licenses/BSD-3-Clause
  10. *
  11. * Unless required by applicable law or agreed to in writing, software distributed
  12. * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  13. * CONDITIONS OF ANY KIND, either express or implied. See the License for the
  14. * specific language governing permissions and limitations under the License.
  15. */
  16. #ifndef _AServantImp_H_
  17. #define _AServantImp_H_
  18. #include "servant/Application.h"
  19. #include "AServant.h"
  20. /**
  21. *
  22. *
  23. */
  24. class AServantImp : public Test::AServant
  25. {
  26. public:
  27. /**
  28. *
  29. */
  30. virtual ~AServantImp() {}
  31. /**
  32. *
  33. */
  34. virtual void initialize();
  35. /**
  36. *
  37. */
  38. virtual void destroy();
  39. /**
  40. *
  41. */
  42. virtual int test(tars::TarsCurrentPtr current);
  43. tars::Int32 testInt(tars::Int32 iIn,tars::Int32 &iOut,tars::TarsCurrentPtr current);
  44. tars::Int32 testStr(const std::string& sIn, std::string &sOut, tars::TarsCurrentPtr current);
  45. private:
  46. };
  47. /////////////////////////////////////////////////////
  48. #endif