Bites
A small library of miscellaneous C++ codes.
 All Classes Namespaces Functions Friends Pages
bites.hpp
1 #ifndef BITES_HPP_INCLUDED
2 #define BITES_HPP_INCLUDED
3 
4 namespace bites {
5 
6 static const char* VERSION = "1.0.6";
7 
8 }
9 
10 #include "bites/Averager.hpp"
11 #include "bites/Config.hpp"
12 #include "bites/ConcurrentQueue.hpp"
13 #include "bites/Mutexed.hpp"
14 #include "bites/MutexedCounter.hpp"
15 #include "bites/RateTicker.hpp"
16 #include "bites/SortedList.hpp"
17 #include "bites/String.hpp"
18 #include "bites/Thread.hpp"
19 
20 #endif // BITES_HPP_INCLUDED