r7061: initial property settings
[ctsim.git] / include / transformmatrix.h
index 5274b309a80fa09c9f65b33935a5c27951c8744f..718c453853ed74f027767c1bc6bc21bbef859dbb 100644 (file)
@@ -7,9 +7,9 @@
 **      Date Started: 1984
 **
 **  This is part of the CTSim program
-**  Copyright (C) 1983-2000 Kevin Rosenberg
+**  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: transformmatrix.h,v 1.1 2000/07/28 08:28:08 kevin Exp $
+**  $Id$
 **
 **  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 <iostream>
+
 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);