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

📄 syntaxtree.cpp

📁 ACE自适配通信环境(ADAPTIVE Communication Environment)是可以自由使用、开放源码的面向对象(OO)框架(Framework)
💻 CPP
字号:
// file      : Example/Introspection/Traversal/SyntaxTree.cpp// author    : Boris Kolpackov <boris@kolpackov.net>// copyright : Copyright (c) 2002-2003 Boris Kolpackov// license   : http://kolpackov.net/license.html#include "SyntaxTree.hpp"using namespace Utility::Introspection;namespace SyntaxTree{  // Node  //  //  namespace  {    TypeInfo    node_init_ ()    {      TypeInfo ti (typeid (Node));      ti.add_base (Access::PUBLIC, true, Object::static_type_info ());      return ti;    }    TypeInfo node_ (node_init_ ());  }  TypeInfo const& Node::  static_type_info () { return node_; }  // Declaration  //  //  namespace  {    TypeInfo    declaration_init_ ()    {      TypeInfo ti (typeid (Declaration));      ti.add_base (Access::PUBLIC, true, Node::static_type_info ());      return ti;    }    TypeInfo declaration_ (declaration_init_ ());  }  TypeInfo const& Declaration::  static_type_info () { return declaration_; }  // Scope  //  //  namespace  {    TypeInfo    scope_init_ ()    {      TypeInfo ti (typeid (Scope));      ti.add_base (Access::PUBLIC, true, Declaration::static_type_info ());      return ti;    }    TypeInfo scope_ (scope_init_ ());  }  TypeInfo const& Scope::  static_type_info () { return scope_; }  // InterfaceDecl  //  //  namespace  {    TypeInfo    interface_decl_init_ ()    {      TypeInfo ti (typeid (InterfaceDecl));      ti.add_base (Access::PUBLIC, true, Declaration::static_type_info ());      return ti;    }    TypeInfo interface_decl_ (interface_decl_init_ ());  }  TypeInfo const& InterfaceDecl::  static_type_info () { return interface_decl_; }  // InterfaceDef  //  //  namespace  {    TypeInfo    interface_def_init_ ()    {      TypeInfo ti (typeid (InterfaceDef));      ti.add_base (Access::PUBLIC, true, InterfaceDecl::static_type_info ());      ti.add_base (Access::PUBLIC, true, Scope::static_type_info ());      return ti;    }    TypeInfo interface_def_ (interface_def_init_ ());  }  TypeInfo const& InterfaceDef::  static_type_info () { return interface_def_; }}//SyntaxTree.cpp,v 1.1 2005/05/24 04:33:12 turkaye Exp

⌨️ 快捷键说明

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