String-ifier for streams as preparation for the GeoClasses

This commit is contained in:
Klaus Basan
2013-04-12 19:21:50 +02:00
parent 42712a2baf
commit 5f678dfe28
19 changed files with 372 additions and 235 deletions

View File

@@ -40,16 +40,16 @@ namespace BlackCore
CVector3D & operator +=(const CVector3D &rhs);
CVector3D & operator -=(const CVector3D &rhs);
CVector3D & operator = (const CVector3D &rhs);
CVector3D & operator = (const CVector3D &rhs);
CVector3D operator +(const CVector3D &rhs);
CVector3D operator -(const CVector3D &rhs);
CVector3D operator +(const CVector3D &rhs);
CVector3D operator -(const CVector3D &rhs);
bool operator ==(const CVector3D &rhs);
bool operator !=(const CVector3D &rhs);
bool operator ==(const CVector3D &rhs);
bool operator !=(const CVector3D &rhs);
//double crossProduct(qint32 );
//double crossProduct(qint32 );
CVector3D & operator *=(const CVector3D &rhs);
CVector3D operator *( const CVector3D &rhs);