X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=tools%2Fctsimtext.cpp;h=ad7a30685fa05602dbc3e2faeeb628da8d3b3ec0;hp=2df7915f9e5f82dad5ec6d850db8ca96716bfab7;hb=4e5b3666206ac20506bca9f03994cc072061a9a7;hpb=32690b31f01f210cdc50abf8c6a9d0400a441260 diff --git a/tools/ctsimtext.cpp b/tools/ctsimtext.cpp index 2df7915..ad7a306 100644 --- a/tools/ctsimtext.cpp +++ b/tools/ctsimtext.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ctsimtext.cpp,v 1.22 2002/09/09 22:45:20 kevin Exp $ +** $Id: ctsimtext.cpp,v 1.24 2003/01/11 21:23:38 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -38,14 +38,14 @@ extern "C" { #include }; #endif - +#include // Master shell for all command-line tools // If called as ctsimtext, program will look to next token on command-line as the function name // If linked to ctsimtext, but executed as another name, eg pjrec, then program will use that // linked name as name of function. -static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.22 2002/09/09 22:45:20 kevin Exp $"; +static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.24 2003/01/11 21:23:38 kevin Exp $"; static const char* const s_szProgramName = "ctsimtext"; static const char* const s_szProgramName2 = "ctsimtext.exe"; static const char* const s_szProgramName3 = "ctsimtext-lam"; @@ -243,7 +243,7 @@ processCommand (int argc, char* const argv[]) return 1; const char* const pszFunction = fileBasename (argv[0]); - + try { if (strcasecmp (pszFunction, "if1") == 0) return if1_main (argc, argv); @@ -275,7 +275,7 @@ processCommand (int argc, char* const argv[]) ctsimtext_usage (s_szProgramName); return 1; } - } catch (exception e) { + } catch (std::exception e) { std::cerr << "Exception: " << e.what() << std::endl; } catch (...) { std::cerr << "Unknown exception caught\n"; @@ -293,16 +293,3 @@ main (int argc, char* argv[]) return retval; } - -#include "nographics.cpp" -#include "if1.cpp" -#include "if2.cpp" -#include "ifinfo.cpp" -#include "ifexport.cpp" -#include "phm2if.cpp" -#include "phm2pj.cpp" -#include "pj2if.cpp" -#include "pjinfo.cpp" -#include "pjrec.cpp" -#include "phm2helix.cpp" -#include "pjHinterp.cpp"