X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Ftransformmatrix.h;h=6282b6172babce9f88b0c131c469e449491b3151;hp=5274b309a80fa09c9f65b33935a5c27951c8744f;hb=ee0105d74fec9d6bfd236e22e9e1d315e46c568e;hpb=806adf54f5b8d061662696b3b498bfab3cd8b2e6 diff --git a/include/transformmatrix.h b/include/transformmatrix.h index 5274b30..6282b61 100644 --- a/include/transformmatrix.h +++ b/include/transformmatrix.h @@ -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 + 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);