hmbdc
simplify-high-performance-messaging-programming
 All Classes Namespaces Functions Variables Friends Pages
StringTrieSet.hpp
1 #include "hmbdc/Copyright.hpp"
2 #pragma once
3 
4 #ifndef __clang__
5 #include "hmbdc/text/StringTrieSetDetail.hpp"
6 
7 namespace hmbdc { namespace text {
8 using StringTrieSet = stringtrieset_detail::StringTrieSet;
9 }}
10 
11 #else
12 
13 #include "hmbdc/text/StringTrieSetClang.hpp"
14 
15 namespace hmbdc { namespace text {
16 using StringTrieSet = StringTrieSetClang;
17 
18 }}
19 
20 #endif
21 
22 
23