⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 amh_sh.h

📁 这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用于网络游戏医学图像网关的高qos要求.更详细的内容可阅读相应的材料
💻 H
字号:
//=============================================================================
/**
*  @file   amh_sh.h
*
*  amh_sh.h,v 1.5 2002/01/28 19:41:52 coryan Exp
*
*  Creates code for AMH operations.
*
*  @author Mayur Deshpande <mayur@ics.uci.edu>
*/
//=============================================================================

#ifndef AMH_OPERATION_SH_H
#define AMH_OPERATION_SH_H

/**
* @class be_visitor_operation_amh_sh
*
* @brief This is a concrete visitor to generate the server header for
*        AMH operations
*/
class be_visitor_amh_operation_sh : public be_visitor_operation
{
public:
  be_visitor_amh_operation_sh (be_visitor_context *ctx);
  ~be_visitor_amh_operation_sh (void);

  virtual int visit_operation (be_operation *node);
  virtual int visit_attribute (be_attribute *node);

private:
  void generate_shared_prologue (be_decl *node,
                                 TAO_OutStream *os,
                                 const char *skel_prefix);
};

#endif /* AMH_OPERATION_SS_H */

⌨️ 快捷键说明

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