Made parse() const * src/Sqlite3MozCookieParser.cc * src/Sqlite3MozCookieParser.h
@@ -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
@@ -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;
@@ -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