amh_rh_ss.h

来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 39 行

H
39
字号
//=============================================================================
/**
*  @file   amh_rh_ss.h
*
*  amh_rh_ss.h,v 1.4 2002/09/25 16:25:38 parsons Exp
*
*  Creates code for AMH-RH operations.
*
*  @author Darrell Brunsch <brunsch@cs.wustl.edu>
*/
//=============================================================================

#ifndef AMH_RH_OPERATION_SS_H
#define AMH_RH_OPERATION_SS_H

/**
 * @class be_visitor_operation_amh_rh_ss
 *
 * @brief This is a concrete visitor to generate the server source for
 *        AMH operations
 */

#include "be_visitor_operation.h"

class be_visitor_amh_rh_operation_ss : public be_visitor_operation
{
 public:
    be_visitor_amh_rh_operation_ss (be_visitor_context *ctx);
    
    ~be_visitor_amh_rh_operation_ss (void);
    
    int visit_operation (be_operation *node);

 private:
    int marshal_params (be_operation *node);   
};

#endif /* AMH_RH_OPERATION_SS_H */

⌨️ 快捷键说明

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