-
Notifications
You must be signed in to change notification settings - Fork 1
/
outside_headers.h
54 lines (47 loc) · 1.28 KB
/
outside_headers.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifndef OUTSIDE_H
#define OUTSIDE_H
/// \file
/// \brief Inclusion of standard and third-party libraries. This header is
/// well-suited for pre-compilation.
/// \author Meir Goldenberg
#include <cassert>
#include <cctype>
#include <chrono>
#include <climits>
#include <csignal>
#include <cmath>
#include <exception>
#include <iomanip>
#include <iostream>
#include <sstream>
#include <fstream>
#include <vector>
#include <memory>
#include <type_traits>
#include <time.h>
#include <algorithm>
#include <functional>
#include <unordered_map>
#include <utility> // for std::pair
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <X11/Xutil.h>
#include <cairo-xlib.h>
#include <X11/XKBlib.h>
//#include <X11/extensions/XTest.h>
#include <boost/functional/hash.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/dijkstra_shortest_paths.hpp>
#include <boost/graph/random_layout.hpp>
#include <boost/graph/circle_layout.hpp>
#include <boost/graph/kamada_kawai_spring_layout.hpp>
#include <boost/graph/fruchterman_reingold.hpp>
#include <boost/property_map/transform_value_property_map.hpp>
#include <tclap/CmdLine.h>
#include <reflect_struct.h>
#include <pretty_print.h>
#include <ncurses.h>
#include <menu.h>
#include <cairo.h>
#endif