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