]> git.saurik.com Git - apple/system_cmds.git/blob - CPPUtil/CPPUtil.h
7ed10dab6e8eab72f9cfd2ac89c1a5c299393cbb
[apple/system_cmds.git] / CPPUtil / CPPUtil.h
1 //
2 // CPPUtil.h
3 // CPPUtil
4 //
5 // Created by James McIlree on 4/7/13.
6 // Copyright (c) 2013 Apple. All rights reserved.
7 //
8
9 #ifndef CPPUtil_CPPUtil_h
10 #define CPPUtil_CPPUtil_h
11
12 #include <unistd.h>
13 #include <limits.h>
14 #include <stdarg.h>
15 #include <fcntl.h>
16 #include <sys/stat.h>
17
18 #include <cstdlib>
19 #include <string>
20 #include <sstream>
21 #include <exception>
22 #include <vector>
23 #include <asl.h>
24
25 #include <math.h>
26
27 #include <mach/mach_time.h>
28
29 namespace util {
30
31 #include "UtilBase.hpp"
32 #include "UtilAssert.hpp"
33 #include "UtilException.hpp"
34 #include "UtilMakeUnique.hpp"
35
36 #include "UtilPath.hpp"
37
38 #include "UtilTRange.hpp"
39 #include "UtilTRangeValue.hpp"
40
41 #include "UtilPrettyPrinting.hpp"
42 #include "UtilTime.hpp"
43 #include "UtilAbsTime.hpp"
44 #include "UtilNanoTime.hpp"
45 #include "UtilAbsInterval.hpp"
46 #include "UtilNanoInterval.hpp"
47 #include "UtilTimer.hpp"
48
49 #include "UtilLog.hpp"
50
51 #include "UtilFileDescriptor.hpp"
52 #include "UtilString.hpp"
53
54 #include "UtilMappedFile.hpp"
55 #include "UtilMemoryBuffer.hpp"
56
57 #include "UtilTerminalColor.hpp"
58
59 }
60
61 #endif