echo_impl.h

来自「ESOAP是一款专注于嵌入式web service开发的工具 压缩包里提供了基」· C头文件 代码 · 共 53 行

H
53
字号
/*
 Created by eSoap Code Generator for C++, >>> DEMO <<<  Version - 1.08
 **** DO NOT EDIT THIS FILE.  *****
 Time: Sun Sep 09 09:37:42 2001

 **** CODE CREATED USING AN UNREGISTERED VERSION OF ESOAPCG.
 Please, after the initial testing, you *MUST* buy a
 copy of this application to continue using it.

 * Limits of this version:

     + 5 functions per interface
     + 5 User defined types( Complex Types )

*/

#ifndef Echo_impl_h__
#define Echo_impl_h__
#include "i_Echo.h"

namespace echo {

class esoap::MethodDataBlock;

class Echo_Impl : public IEcho
{
   esoap::MethodDataBlock *__currentBlock;

public:

   Echo_Impl();
   virtual ~Echo_Impl();
   void activate();
   void deactivate();

   esoap::MethodDataBlock *getCurrentBlock() const { return __currentBlock; }

   virtual void  echo(
                  const UserProfile & user,
                  esoap::String & name,
                  int & age,
                  int & zipcode );
 private:

   int echo_impl( esoap::MethodDataBlock *mdata );
   static const char *NS_URI;

};
}
#endif // Echo_impl_h__


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?