12345678910111213141516171819202122232425262728293031323334353637 |
- #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
|