/* */ #ifndef D_DEPENDENCY_H #define D_DEPENDENCY_H #include "common.h" namespace aria2 { class Dependency { public: virtual ~Dependency() {} virtual bool resolve() = 0; // throw() }; } // namespace aria2 #endif // D_DEPENDENCY_H