Update copyright date; remove old CVS keyword
[ctsim.git] / libctsim / trace.cpp
index 73636ed30cd87f328713c0ce143f5c92144f4255..7d7df10bc51e681db6a1ce3c69d741c917db81d7 100644 (file)
@@ -1,14 +1,12 @@
 /*****************************************************************************
 ** FILE IDENTIFICATION
 **
-**   Name:        trace.cpp        Class for trace
+**   Name:         trace.cpp        Class for trace
 **   Programmer:   Kevin Rosenberg
 **   Date Started: June 2000
 **
 **  This is part of the CTSim program
-**  Copyright (C) 1983-2000 Kevin Rosenberg
-**
-**  $Id: trace.cpp,v 1.4 2003/07/04 21:39:40 kevin Exp $
+**  Copyright (C) 1983-2009 Kevin Rosenberg
 **
 **  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
@@ -40,7 +38,7 @@ const int Trace::BIT_PROJECTIONS = 0x0004;
 const int Trace::BIT_PLOT = 0x0008;
 const int Trace::BIT_CLIPPING = 0x0010;
 
-const char* Trace::s_aszTraceName[] = 
+const char* Trace::s_aszTraceName[] =
 {
   "none",
   "console",
@@ -50,7 +48,7 @@ const char* Trace::s_aszTraceName[] =
   "clipping",
 };
 
-const char* Trace::s_aszTraceTitle[] = 
+const char* Trace::s_aszTraceTitle[] =
 {
   "None",
   "Console",
@@ -84,16 +82,16 @@ Trace::convertTraceIDToTitle (const int idTrace)
 
   return (title);
 }
-      
+
 int
-Trace::convertTraceNameToID (const char* const traceName) 
+Trace::convertTraceNameToID (const char* const traceName)
 {
   int id = Trace::TRACE_INVALID;
 
   for (int i = 0; i < s_iTraceCount; i++)
       if (strcasecmp (traceName, s_aszTraceName[i]) == 0) {
-         id = i;
-         break;
+          id = i;
+          break;
       }
 
   return (id);