r246: More modifications for MSVC
[ctsim.git] / include / transformmatrix.h
index 5274b309a80fa09c9f65b33935a5c27951c8744f..6282b6172babce9f88b0c131c469e449491b3151 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: transformmatrix.h,v 1.1 2000/07/28 08:28:08 kevin Exp $
+**  $Id: transformmatrix.h,v 1.2 2000/12/06 01:46:43 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
@@ -28,7 +28,8 @@
 #ifndef __H_TRANSFORMMATRIX
 #define __H_TRANSFORMMATRIX
 
-class ostream;
+#include <ostream>\r
+
 class TransformationMatrix2D {
 public:
   double mtx[3][3];
@@ -48,7 +49,7 @@ public:
 
   void transformPoint (double *pX, double *pY) const;
 
-  void print (ostream& ostr) const;
+  void print (std::ostream& ostr) const;
 
   friend const TransformationMatrix2D operator* (const TransformationMatrix2D& lhs, const TransformationMatrix2D& rhs);