/*! * @file threading.h * @brief Definition of Thread Classes. * * These are mainly Classes, that are used for wrapping around SDL_thread */ #ifndef _THREADING_H #define _THREADING_H #ifdef HAVE_SDL_H #include #else #include #endif //! A class for Wrapping Threads class Threading { public: Threading(); virtual ~Threading(); private: }; #endif /* _THREADING_H */