summaryrefslogtreecommitdiff
path: root/datastore-leveldb/src/db.h
diff options
context:
space:
mode:
Diffstat (limited to 'datastore-leveldb/src/db.h')
-rw-r--r--datastore-leveldb/src/db.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/datastore-leveldb/src/db.h b/datastore-leveldb/src/db.h
new file mode 100644
index 0000000..5e31b00
--- /dev/null
+++ b/datastore-leveldb/src/db.h
@@ -0,0 +1,14 @@
+#ifndef HAVE_DB_H
+#define HAVE_DB_H
+
+#include <leveldb/db.h>
+
+leveldb::DB *db_get(std::string& name);
+
+bool db_insert(std::string& name, const uint64_t timestamp, std::string& value);
+
+void db_close();
+
+std::string db_make_key(const uint64_t timestamp);
+
+#endif /*HAVE_DB_H*/