transport_pch.hh
Go to the documentation of this file.
1/*
2 * Copyright (C) 2012 Open Source Robotics Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17
18/*
19 * Do not include this file unless building precompiled headers.
20 * This file contains all headers included, minus the ones maintained by OSRF.
21 * To get a starting list for this file, I use the command:
22 * grep --include="*.hh" --include="*.cc" --no-filename -r "#include <" | sort -u
23 */
24
25#include <boost/algorithm/string.hpp>
26#include <boost/asio.hpp>
27#include <boost/bind/bind.hpp>
28#include <boost/enable_shared_from_this.hpp>
29#include <boost/function.hpp>
30#include <boost/interprocess/sync/interprocess_semaphore.hpp>
31#include <boost/lexical_cast.hpp>
32#include <boost/shared_ptr.hpp>
33#include <boost/thread.hpp>
34#include <boost/thread/mutex.hpp>
35#include <boost/thread/thread.hpp>
36#include <boost/tuple/tuple.hpp>
37#include <boost/unordered/unordered_set.hpp>
38#include <deque>
39#include <google/protobuf/message.h>
40#include <iomanip>
41#include <iostream>
42#include <list>
43#include <map>
44#include <mutex>
45#include <stdio.h>
46#include <stdlib.h>
47#include <string>
48#include <tbb/task.h>
49#ifndef TBB_VERSION_MAJOR
50#include <tbb/version.h>
51#endif
52#if TBB_VERSION_MAJOR < 2021
53#include <tbb/blocked_range.h>
54#include <tbb/parallel_for.h>
55#include <tbb/task.h>
56#else
57#undef emit
58#include <tbb/tbb.h>
59#define emit
60#endif
61#include <utility>
62#include <vector>