be_constant.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 56 行
H
56 行
/* -*- c++ -*- */
// be_constant.h,v 1.14 2002/07/01 13:49:21 parsons Exp
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// be_constant.h
//
// = DESCRIPTION
// Extension of class AST_Constant that provides additional means for C++
// mapping.
//
// = AUTHOR
// Copyright 1994-1995 by Sun Microsystems, Inc.
// and
// Aniruddha Gokhale
//
// ============================================================================
#ifndef BE_CONSTANT_H
#define BE_CONSTANT_H
#include "be_decl.h"
#include "ast_constant.h"
class be_visitor;
class be_constant : public virtual AST_Constant,
public virtual be_decl
{
public:
be_constant (void);
// Constructor.
be_constant (AST_Expression::ExprType et,
AST_Expression *v,
UTL_ScopedName *n);
// Constructor.
// Visiting.
virtual int accept (be_visitor *visitor);
//Cleanup.
virtual void destroy (void);
// Narrowing.
DEF_NARROW_METHODS2 (be_constant, AST_Constant, be_decl);
DEF_NARROW_FROM_DECL (be_constant);
};
#endif // if !defined
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?