summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-06-09 18:12:01 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-06-09 18:12:01 (GMT)
commitd05ac626d89c0d4ef91a972b9927d248c1e48b79 (patch)
treeba52c91cf47e3dc1818b7aaff78f26077f7b6753 /Swiften/History/SQLiteHistoryManager.h
parente184b232ae7d6b9b77eed4a454d15eaf93dd7c5b (diff)
downloadswift-d05ac626d89c0d4ef91a972b9927d248c1e48b79.zip
swift-d05ac626d89c0d4ef91a972b9927d248c1e48b79.tar.bz2
Implemented basics of an SQLiteHistoryManager.
Diffstat (limited to 'Swiften/History/SQLiteHistoryManager.h')
-rw-r--r--Swiften/History/SQLiteHistoryManager.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/Swiften/History/SQLiteHistoryManager.h b/Swiften/History/SQLiteHistoryManager.h
new file mode 100644
index 0000000..ace42f7
--- /dev/null
+++ b/Swiften/History/SQLiteHistoryManager.h
@@ -0,0 +1,27 @@
+#pragma once
+
+#include <boost/optional.hpp>
+
+#include "Swiften/History/HistoryManager.h"
+
+struct sqlite3;
+
+namespace Swift {
+ class SQLiteHistoryManager : public HistoryManager {
+ public:
+ SQLiteHistoryManager(const String& file);
+ ~SQLiteHistoryManager();
+
+ virtual void addMessage(const HistoryMessage& message);
+ virtual std::vector<HistoryMessage> getMessages() const;
+
+ int getIDForJID(const JID&);
+ int addJID(const JID&);
+
+ boost::optional<JID> getJIDFromID(int id) const;
+ boost::optional<int> getIDFromJID(const JID& jid) const;
+
+ private:
+ sqlite3* db_;
+ };
+}