typedef_cs.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 49 行
H
49 行
/* -*- c++ -*- */
//
// typedef_cs.h,v 1.3 2002/07/01 13:49:21 parsons Exp
//
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// typedef_cs.h
//
// = DESCRIPTION
// Concrete visitor for the Typedef class
// This provides the code generation for the Typedef class in the client
// stubs.
//
// = AUTHOR
// Aniruddha Gokhale
//
// ============================================================================
#ifndef _BE_VISITOR_TYPEDEF_TYPEDEF_CS_H_
#define _BE_VISITOR_TYPEDEF_TYPEDEF_CS_H_
class be_visitor_typedef_cs : public be_visitor_typedef
{
//
// = TITLE
// be_visitor_typedef_cs
//
// = DESCRIPTION
// This is a concrete visitor to generate the server header for typedef
//
//
public:
be_visitor_typedef_cs (be_visitor_context *ctx);
// constructor
~be_visitor_typedef_cs (void);
// destructor
virtual int visit_typedef (be_typedef *node);
// visit typedef. We provide code for this method in the derived class
};
#endif /* _BE_VISITOR_TYPEDEF_TYPEDEF_CS_H_*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?