X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Ftransformmatrix.h;h=78c866cecc7565782b19ae001818206c19c88d52;hp=5274b309a80fa09c9f65b33935a5c27951c8744f;hb=f13a8c004b8f182b42d9e4df2bcd7c7f030bf1ad;hpb=711cae0ee02e046370fdb4d6c6f440596ff71980 diff --git a/include/transformmatrix.h b/include/transformmatrix.h index 5274b30..78c866c 100644 --- a/include/transformmatrix.h +++ b/include/transformmatrix.h @@ -7,9 +7,7 @@ ** Date Started: 1984 ** ** 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 $ +** 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 @@ -28,7 +26,8 @@ #ifndef __H_TRANSFORMMATRIX #define __H_TRANSFORMMATRIX -class ostream; +#include + class TransformationMatrix2D { public: double mtx[3][3]; @@ -48,7 +47,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);