xcdat/include/xcdat.hpp

15 lines
252 B
C++
Raw Normal View History

2021-06-25 17:18:57 +00:00
#pragma once
2021-06-26 14:48:29 +00:00
2021-06-27 05:06:08 +00:00
#include "xcdat/bc_vector_7.hpp"
2021-06-27 04:12:35 +00:00
#include "xcdat/bc_vector_8.hpp"
2021-06-27 05:06:08 +00:00
2021-06-26 14:48:29 +00:00
#include "xcdat/io.hpp"
#include "xcdat/trie.hpp"
2021-06-26 22:40:15 +00:00
namespace xcdat {
2021-06-27 05:06:08 +00:00
using trie_7_type = trie<bc_vector_7>;
2021-06-27 04:12:35 +00:00
using trie_8_type = trie<bc_vector_8>;
2021-06-26 22:40:15 +00:00
2021-06-27 05:06:08 +00:00
} // namespace xcdat