X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tools%2Fctsimtext.cpp;h=c9e6297f0fb7c4398976ba7e70b71995d0adb372;hb=e85dbff9faaca30e1d89d05b0e5deda1ab932f86;hp=2e05f71c7b1918de0f5a93a7f5c6705690b8a669;hpb=b8684b11cc5a573c333bb5ddee682b323005a91a;p=ctsim.git diff --git a/tools/ctsimtext.cpp b/tools/ctsimtext.cpp index 2e05f71..c9e6297 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.21 2002/05/01 14:33:59 kevin Exp $ +** $Id: ctsimtext.cpp,v 1.25 2003/01/30 04:16:27 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.21 2002/05/01 14:33:59 kevin Exp $"; +static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.25 2003/01/30 04:16:27 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"; @@ -159,7 +159,7 @@ ctsimtext_main (int argc, char * argv[]) convertStringToArgcv (pszInputLine, &argc, &argv); #ifdef DEBUG - for (unsigned int i = 0; i < argc; i++) + for (int i = 0; i < argc; i++) std::cout << "Token " << i << ": " << argv[i] << "\n"; #endif iReturn = processCommand (argc, argv); @@ -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,4 +293,3 @@ main (int argc, char* argv[]) return retval; } -