view libinterp/corefcn/interpreter-private.h @ 24270:bc3819b7cca1

don't use symbol_table:: nesting for symbol_record, symbol_scope, or fcn_info Change all uses of symbol_table::symbol_record to symbol_record. Change all uses of symbol_table::scope to symbol_scope. Change all uses of symbol_table::fcn_info to fcn_info.
author John W. Eaton <jwe@octave.org>
date Thu, 16 Nov 2017 21:43:47 -0500
parents 41795b504a8b
children 8bcfddad15ec
line wrap: on
line source

/*

Copyright (C) 2017 John W. Eaton

This file is part of Octave.

Octave is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.

Octave is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Octave; see the file COPYING.  If not, see
<http://www.gnu.org/licenses/>.

*/

#if ! defined (octave_interpreter_private_h)
#define octave_interpreter_private_h 1

#include "octave-config.h"

#include <string>

#include "symtab.h"

class cdef_manager;

namespace octave
{
  class interpreter;
  class dynamic_loader;
  class gtk_manager;
  class help_system;
  class load_path;
  class tree_evaluator;
  class call_stack;

  extern interpreter& __get_interpreter__ (const std::string& who);

  extern dynamic_loader& __get_dynamic_loader__ (const std::string& who);

  extern help_system& __get_help_system__ (const std::string& who);

  extern load_path& __get_load_path__ (const std::string& who);

  extern symbol_table& __get_symbol_table__ (const std::string& who);

  extern symbol_scope *__get_current_scope__ (const std::string& who);

  extern symbol_scope *
  __require_current_scope__ (const std::string& who);

  extern tree_evaluator& __get_evaluator__ (const std::string& who);

  extern call_stack& __get_call_stack__ (const std::string& who);

  extern cdef_manager& __get_cdef_manager__ (const std::string& who);

  extern gtk_manager& __get_gtk_manager__ (const std::string& who);
}

#endif