r3847: mac changes
[ctsim.git] / include / sgp.h
index 9e4f8b9fa60eb80ac1620c39ea9a630ef46f5d4d..4a7dcb961308752ff9bdb79aae2eba5f55df6073 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: sgp.h,v 1.27 2001/03/11 15:27:30 kevin Exp $
+**  $Id: sgp.h,v 1.28 2003/01/22 22:15:10 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
@@ -103,7 +103,7 @@ public:
 };
 
 
-class RGBColor;
+class SGP_RGBColor;
 class SGP {
 private:
   int m_iPhysicalXSize;   // Physical Window size 
@@ -141,7 +141,7 @@ private:
   
   void calc_transform ();
 
-  static RGBColor s_aRGBColor[];
+  static SGP_RGBColor s_aRGBColor[];
   static int s_iRGBColorCount;
 
 #if HAVE_WXWINDOWS
@@ -283,14 +283,14 @@ enum RasterOp {
 };
 
 
-class RGBColor {
+class SGP_RGBColor {
  private:
   short int r;
   short int g;
   short int b;
 
  public:
-  RGBColor (int r, int g, int b)
+  SGP_RGBColor (int r, int g, int b)
     : r(r), g(g), b(b)
     {}