ProxyImp.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 __PROXY_IMP_H_
  17. #define __PROXY_IMP_H_
  18. #include "servant/Application.h"
  19. #include "Hello.h"
  20. #include "Proxy.h"
  21. using namespace TestApp;
  22. /**
  23. *
  24. *
  25. */
  26. class ProxyImp : public TestApp::Proxy
  27. {
  28. public:
  29. /**
  30. *
  31. */
  32. virtual ~ProxyImp() {}
  33. /**
  34. *
  35. */
  36. virtual void initialize();
  37. /**
  38. *
  39. */
  40. virtual void destroy();
  41. /**
  42. *
  43. */
  44. virtual tars::Int32 test(tars::TarsCurrentPtr current);
  45. /**
  46. *
  47. */
  48. virtual tars::Int32 testProxy(const std::string& sReq, std::string &sRsp, tars::TarsCurrentPtr current);
  49. private:
  50. HelloPrx _prx;
  51. };
  52. /////////////////////////////////////////////////////
  53. #endif