X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fparser%2Fparser_compat.cpp;h=7a43bcfd78f7a0f2f75dcd35f0772ba43c954132;hp=d0723eedb737f518edcd59f54d5a020d7ce93d3b;hb=4ec372a00b1a13e6374ce880cbd68c2e14114dad;hpb=a377cee53b71348235ec36f83afeced7e10288a8 diff --git a/ginac/parser/parser_compat.cpp b/ginac/parser/parser_compat.cpp index d0723eed..7a43bcfd 100644 --- a/ginac/parser/parser_compat.cpp +++ b/ginac/parser/parser_compat.cpp @@ -1,14 +1,35 @@ -/// @file parser_compat.cpp Parser interface compatible with the old -/// (bison/flex based) parser. +/** @file parser_compat.cpp + * + * Parser interface compatible with the old (bison/flex based) parser. */ + +/* + * GiNaC Copyright (C) 1999-2011 Johannes Gutenberg University Mainz, Germany + * + * This program 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 2 of the License, or + * (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #include "ex.h" #include "idx.h" #include "lst.h" -#include "parser.hpp" -#include +#include "parser.h" + #include +#include + +namespace GiNaC { -namespace GiNaC -{ static symtab make_symtab(const ex& l); ptr ex::construct_from_string_and_lst(const std::string &s, const ex &l) @@ -45,5 +66,4 @@ static std::string get_symbol_name(const ex & s) throw (std::invalid_argument("get_symbol_name(): unexpected expression type")); } -} - +} // namespace GiNaC