123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef Punkt_H
- #define Punkt_H
- #include "Vec2.h"
- namespace Framework
- {
-
- class WFenster;
- typedef Vec2<int>
- Punkt;
- #ifdef WIN32
-
- DLLEXPORT Punkt BildschirmGröße(int mId = 0);
-
- DLLEXPORT Punkt Bildschirmmitte(int mId = 0);
-
-
-
- DLLEXPORT Punkt Bildschirmmitte(WFenster* f, int mId = 0);
- #endif
-
-
-
- DLLEXPORT bool operator>(const Punkt& a, const Punkt& b);
-
-
-
- DLLEXPORT bool operator<(const Punkt& a, const Punkt& b);
-
-
-
- DLLEXPORT inline bool operator<=(const Punkt& a, const Punkt& b);
-
-
-
- DLLEXPORT inline bool operator>=(const Punkt& a, const Punkt& b);
- }
- #endif
|