1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 1993-2021 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// 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
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////
#if ! defined (octave_variables_h)
#define octave_variables_h 1
#include "octave-config.h"
class octave_function;
class octave_user_function;
class octave_value;
class octave_value_list;
class octave_builtin;
class string_vector;
namespace octave
{
class tree_identifier;
}
#include <limits>
#include <string>
#include "lo-ieee.h"
#include "ov-builtin.h"
extern OCTINTERP_API octave_function *
is_valid_function (const octave_value&, const std::string& = "",
bool warn = false);
extern OCTINTERP_API octave_function *
is_valid_function (const std::string&, const std::string& = "",
bool warn = false);
OCTAVE_DEPRECATED (6, "use 'octave::get_function_handle' instead")
extern OCTINTERP_API octave_function *
extract_function (const octave_value& arg, const std::string& warn_for,
const std::string& fname, const std::string& header,
const std::string& trailer);
extern OCTINTERP_API int
symbol_exist (const std::string& name, const std::string& type = "any");
extern OCTINTERP_API std::string
unique_symbol_name (const std::string& basename);
extern OCTINTERP_API octave_value
set_internal_variable (bool& var, const octave_value_list& args,
int nargout, const char *nm);
extern OCTINTERP_API octave_value
set_internal_variable (char& var, const octave_value_list& args,
int nargout, const char *nm);
extern OCTINTERP_API octave_value
set_internal_variable (int& var, const octave_value_list& args,
int nargout, const char *nm,
int minval = std::numeric_limits<int>::min (),
int maxval = std::numeric_limits<int>::max ());
extern OCTINTERP_API octave_value
set_internal_variable (double& var, const octave_value_list& args,
int nargout, const char *nm,
double minval = -octave::numeric_limits<double>::Inf (),
double maxval = octave::numeric_limits<double>::Inf ());
extern OCTINTERP_API octave_value
set_internal_variable (std::string& var, const octave_value_list& args,
int nargout, const char *nm, bool empty_ok = true);
extern OCTINTERP_API octave_value
set_internal_variable (std::string& var, const octave_value_list& args,
int nargout, const char *nm, const char **choices);
extern OCTINTERP_API octave_value
set_internal_variable (int& var, const octave_value_list& args,
int nargout, const char *nm, const char **choices);
#define SET_INTERNAL_VARIABLE(NM) \
set_internal_variable (V ## NM, args, nargout, #NM)
#define SET_NONEMPTY_INTERNAL_STRING_VARIABLE(NM) \
set_internal_variable (V ## NM, args, nargout, #NM, false)
#define SET_INTERNAL_VARIABLE_WITH_LIMITS(NM, MINVAL, MAXVAL) \
set_internal_variable (V ## NM, args, nargout, #NM, MINVAL, MAXVAL)
// in the following, CHOICES must be a C string array terminated by null.
#define SET_INTERNAL_VARIABLE_CHOICES(NM, CHOICES) \
set_internal_variable (V ## NM, args, nargout, #NM, CHOICES)
extern OCTINTERP_API std::string
maybe_missing_function_hook (const std::string& name);
OCTAVE_DEPRECATED (5, "this function will be removed in a future version of Octave")
extern OCTINTERP_API string_vector
get_struct_elts (const std::string& text);
#endif
|