aboutsummaryrefslogtreecommitdiff
path: root/include/odhtdb/DatabaseOrder.hpp
blob: d9c390624e4ef47099af06da432a6acebb824167 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "types.hpp"

namespace odhtdb
{
    enum class DatabaseFetchOrder : u8
    {
        OLDEST_FIRST,
        NEWEST_FIRST
    };
    
    enum class DatabaseLoadOrder : u8
    {
        OLDEST_FIRST,
        NEWEST_FIRST
    };
}