X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=tools%2Fviewgar.cpp;h=dd169bddc6c5203ef464cf88d38047e732de625e;hp=6fc8c23af72344f4fba52a087a704ad6833b4a43;hb=a3e1ece48dd362e3862f701c043adb49ba93ad0c;hpb=dbb36db8d02b2c25af6bbfff8135112637936e1f;ds=sidebyside diff --git a/tools/viewgar.cpp b/tools/viewgar.cpp index 6fc8c23a..dd169bdd 100644 --- a/tools/viewgar.cpp +++ b/tools/viewgar.cpp @@ -1,8 +1,9 @@ /** @file viewgar.cpp * - * GiNaC archive file viewer - * - * GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany + * GiNaC archive file viewer. */ + +/* + * GiNaC Copyright (C) 1999-2005 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 @@ -16,24 +17,26 @@ * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include -#include +#include +#include #include #include #include "ginac.h" + +using namespace std; using namespace GiNaC; int main(int argc, char **argv) { if (argc < 2) { - fprintf(stderr, "Usage: %s [-d] file...", argv[0]); + cerr << "Usage: " << argv[0] << " [-d] file..." << endl; exit(1); } - argc--; argv++; + --argc; ++argv; bool dump_mode = false; try { @@ -41,24 +44,24 @@ int main(int argc, char **argv) while (argc) { if (strcmp(*argv, "-d") == 0) { dump_mode = true; - argc--; argv++; + --argc; ++argv; } - ifstream f(*argv); + std::ifstream f(*argv, std::ios_base::binary); archive ar; f >> ar; if (dump_mode) { - ar.printraw(cout); - cout << endl; + ar.printraw(std::cout); + std::cout << std::endl; } else { - for (unsigned int i=0; i