23 lines
306 B
C++
23 lines
306 B
C++
#ifndef __FLTKMISC_HH__
|
|
#define __FLTKMISC_HH__
|
|
|
|
namespace dw {
|
|
namespace fltk {
|
|
|
|
/**
|
|
* \brief Miscellaneous FLTK stuff.
|
|
*/
|
|
namespace misc {
|
|
|
|
int screenWidth ();
|
|
int screenHeight ();
|
|
|
|
void warpPointer (int x, int y);
|
|
|
|
} // namespace misc
|
|
} // namespace fltk
|
|
} // namespace dw
|
|
|
|
|
|
#endif // __FLTKMISC_HH__
|