/* */ #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