aboutsummaryrefslogtreecommitdiff
path: root/include/odhtdb/DatabaseOrder.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/odhtdb/DatabaseOrder.hpp')
-rw-r--r--include/odhtdb/DatabaseOrder.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/odhtdb/DatabaseOrder.hpp b/include/odhtdb/DatabaseOrder.hpp
new file mode 100644
index 0000000..d9c3906
--- /dev/null
+++ b/include/odhtdb/DatabaseOrder.hpp
@@ -0,0 +1,18 @@
+#pragma once
+
+#include "types.hpp"
+
+namespace odhtdb
+{
+ enum class DatabaseFetchOrder : u8
+ {
+ OLDEST_FIRST,
+ NEWEST_FIRST
+ };
+
+ enum class DatabaseLoadOrder : u8
+ {
+ OLDEST_FIRST,
+ NEWEST_FIRST
+ };
+}