smart_proxy_cs.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 46 行
H
46 行
//
// smart_proxy_cs.h,v 1.3 2002/09/26 00:04:25 parsons Exp
//
/* -*- c++ -*- */
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// smart_proxy_cs.h
//
// = DESCRIPTION
// Concrete visitor for the Interface node.
// This provides code generation for smart proxy classes in the client stub.
//
// = AUTHOR
// Kirthika Parameswaran
//
// ============================================================================
#ifndef _BE_INTERFACE_SMART_PROXY_CS_H_
#define _BE_INTERFACE_SMART_PROXY_CS_H_
class be_visitor_interface_smart_proxy_cs : public be_visitor_interface
{
// = TITLE
// Generate the "thru_poa collocated" class declaration.
public:
be_visitor_interface_smart_proxy_cs (be_visitor_context *ctx);
// constructor
virtual ~be_visitor_interface_smart_proxy_cs (void);
// destructor
virtual int visit_interface (be_interface *node);
// visit interface
virtual int visit_component (be_component *node);
// This will just call the above method - no need to create
// another set of visitors for this stuff.
};
#endif /* _BE_INTERFACE_SMART_PROXY_CS_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?