r262: Make std:: namespace explicit
[ctsim.git] / tools / pj2if.cpp
index fb3277a8349d386f97a3f170127af6894eef7a3e..1bbfb112b00d6b4f7147e0aed4850ee0ef90c8b7 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: pj2if.cpp,v 1.5 2000/11/22 07:17:06 kevin Exp $
+**  $Id: pj2if.cpp,v 1.6 2000/12/16 07:28:25 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
@@ -47,18 +47,18 @@ static struct option my_options[] =
   {0, 0, 0, 0}
 };
 
-static const char* g_szIdStr = "$Id: pj2if.cpp,v 1.5 2000/11/22 07:17:06 kevin Exp $";
+static const char* g_szIdStr = "$Id: pj2if.cpp,v 1.6 2000/12/16 07:28:25 kevin Exp $";
 
 void 
 pj2if_usage (const char *program)
 {
-  cout << "usage: " << fileBasename(program) << " in-proj-file out-if-file [OPTIONS]" << endl;
-  cout << "Converts a projection file to a IF file" << endl;
-  cout << endl;
-  cout << "   --verbose   Verbose mode" << endl;
-  cout << "   --dump      Dump all scan data" << endl;
-  cout << "   --version   Print version" << endl;
-  cout << "   --help      Print this help message" << endl;
+  std::cout << "usage: " << fileBasename(program) << " in-proj-file out-if-file [OPTIONS]\n";
+  std::cout << "Converts a projection file to a IF file\n";
+  std::cout << std::endl;
+  std::cout << "   --verbose   Verbose mode\n";
+  std::cout << "   --dump      Dump all scan data\n";
+  std::cout << "   --version   Print version\n";
+  std::cout << "   --help      Print this help message\n";
 }
 
          
@@ -88,9 +88,9 @@ pj2if_main (const int argc, char *const argv[])
          break;
         case O_VERSION:
 #ifdef VERSION
-         cout << "Version " << VERSION << endl << g_szIdStr << endl;
+         std::cout << "Version " << VERSION << std::endl << g_szIdStr << std::endl;
 #else
-          cout << "Unknown version number" << endl;
+          std::cout << "Unknown version number\n";
 #endif
          return (0);
        case O_HELP:
@@ -120,9 +120,9 @@ pj2if_main (const int argc, char *const argv[])
   if (optDump)
     pj.printProjectionData();
   else if (optVerbose) {
-    ostringstream os;
+    std::ostringstream os;
     pj.printScanInfo (os);
-    cout << os.str();
+    std::cout << os.str();
   }
   
   ImageFile im (pj.nDet(), pj.nView());
@@ -154,9 +154,9 @@ main (const int argc, char *const argv[])
   try {
     retval = pj2if_main(argc, argv);
   } catch (exception e) {
-    cerr << "Exception: " << e.what() << endl;
+    cerr << "Exception: " << e.what() << std::endl;
   } catch (...) {
-    cerr << "Unknown exception" << endl;
+    cerr << "Unknown exception\n";
   }
 
   return (retval);