2008-08-17 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Made parse() const
	* src/Sqlite3MozCookieParser.cc
	* src/Sqlite3MozCookieParser.h
pull/1/head
Tatsuhiro Tsujikawa 2008-08-17 12:56:23 +00:00
parent 0cac0dabde
commit aabb6bb2d9
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2008-08-17 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Made parse() const
* src/Sqlite3MozCookieParser.cc
* src/Sqlite3MozCookieParser.h
2008-08-17 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Added firefox3 cookie support based on the patch submitted by

View File

@ -82,7 +82,8 @@ static int cookieRowMapper(void* data, int rowIndex,
return 0;
}
std::deque<Cookie> Sqlite3MozCookieParser::parse(const std::string& filename)
std::deque<Cookie>
Sqlite3MozCookieParser::parse(const std::string& filename) const
{
sqlite3* db = 0;

View File

@ -48,7 +48,7 @@ public:
~Sqlite3MozCookieParser();
std::deque<Cookie> parse(const std::string& filename);
std::deque<Cookie> parse(const std::string& filename) const;
};
} // namespace aria2