NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
common-pch.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22 #ifndef NDN_COMMON_PCH_HPP
23 #define NDN_COMMON_PCH_HPP
24 
25 // If the compiler supports precompiled headers, this header should be compiled
26 // and included before anything else
27 
28 #include "common.hpp"
29 
30 // STL headers to precompile
31 #include <fstream>
32 #include <list>
33 #include <map>
34 #include <set>
35 #include <sstream>
36 #include <unordered_map>
37 #include <unordered_set>
38 #include <vector>
39 
40 // Boost headers to precompile
41 #include <boost/algorithm/string.hpp>
42 #include <boost/chrono.hpp>
43 #include <boost/date_time/posix_time/posix_time.hpp>
44 #include <boost/filesystem.hpp>
45 #include <boost/iostreams/categories.hpp>
46 #include <boost/iostreams/stream.hpp>
47 #include <boost/lexical_cast.hpp>
48 #include <boost/property_tree/ptree.hpp>
49 #include <boost/property_tree/info_parser.hpp>
50 #include <boost/regex.hpp>
51 #include <boost/system/error_code.hpp>
52 
53 // Other useful headers to precompile
54 #include "security/v1/cryptopp.hpp"
55 
56 #endif // NDN_COMMON_PCH_HPP
Copyright (c) 2013-2016 Regents of the University of California.