ast_native.h

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

H
39
字号
// This may look like C, but it's really -*- C++ -*-
// ast_native.h,v 1.12 2002/07/04 16:59:52 parsons Exp

#ifndef _AST_NATIVE_H_
#define _AST_NATIVE_H_

#include "ast_type.h"

// Representation of "native" IDL type added by the POA spec.

class TAO_IDL_FE_Export AST_Native : public virtual AST_Type
{
public:
  // Operations.

  // Constructor(s).

  AST_Native (void);
  // Default constructor.

  AST_Native (UTL_ScopedName *n);
  // Constructor that initializes the scoped name.

  virtual ~AST_Native (void);
  // Destructor.

  // Narrowing.
  DEF_NARROW_METHODS1(AST_Native, AST_Type);
  DEF_NARROW_FROM_DECL(AST_Native);

  // AST Dumping.
  virtual void dump (ACE_OSTREAM_TYPE &o);

  // Visiting.
  virtual int ast_accept (ast_visitor *visitor);
};

#endif /* AST_NATIVE_H */

⌨️ 快捷键说明

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