/* */ #ifndef _D_PLATFORM_H_ #define _D_PLATFORM_H_ #include "common.h" namespace aria2 { class Platform { private: static bool initialized_; public: Platform(); ~Platform(); static bool setUp(); static bool tearDown(); static bool isInitialized(); }; } // namespace aria2 #endif // _D_PLATFORM_H_