2010-11-14 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

Added .cc file for classes/structs that only provided by header
	file. Defined non-POD classes' ctor, dtor in .cc file.  Moved
	implementation code in header file to .cc file for major
	classes/strucsts.
This commit is contained in:
Tatsuhiro Tsujikawa 2010-11-14 07:17:55 +00:00
parent 93e5dbed32
commit 1372ac51ad
272 changed files with 5418 additions and 2483 deletions

View file

@ -197,4 +197,14 @@ void Logger::writeStackTrace
}
}
bool Logger::debug()
{
return levelEnabled(A2_DEBUG);
}
bool Logger::info()
{
return levelEnabled(A2_INFO);
}
} // namespace aria2