author | insilmaril |
Tue Dec 04 12:32:59 2007 +0000 (2007-12-04) | |
changeset 628 | d7d0708b1c60 |
parent 422 | 07a2f3f31101 |
child 789 | d85834ad8c54 |
permissions | -rw-r--r-- |
1 #ifndef MISC_H
2 #define MISC_H
4 #include <qpoint.h>
5 #include <qdir.h>
6 #include <iostream>
8 using namespace std;
11 /////////////////////////////////////////////////////////////////////////////
12 QString qpointToString (const QPoint &p);
13 QString qpointfToString (const QPointF &p);
14 extern ostream &operator<< (ostream &stream, QPoint const &p);
15 extern ostream &operator<< (ostream &stream, QPointF const &p);
16 qreal getAngle(const QPointF &);
17 QPointF normalise (const QPointF &);
18 qreal max (qreal,qreal);
19 class BranchObj;
20 class MapEditor;
22 #endif