Main MRPT website > C++ reference for MRPT 1.4.0
boost_join.h
Go to the documentation of this file.
1/* +---------------------------------------------------------------------------+
2 | Mobile Robot Programming Toolkit (MRPT) |
3 | http://www.mrpt.org/ |
4 | |
5 | Copyright (c) 2005-2016, Individual contributors, see AUTHORS file |
6 | See: http://www.mrpt.org/Authors - All rights reserved. |
7 | Released under BSD License. See details in http://www.mrpt.org/License |
8 +---------------------------------------------------------------------------+ */
9#ifndef MRPT_UTILS_BOOSTJOIN_H
10#define MRPT_UTILS_BOOSTJOIN_H
11
12// Use a few lines from boost here
13// (C) Copyright John Maddock 2001 - 2003.
14// (C) Copyright Darin Adler 2001.
15// (C) Copyright Peter Dimov 2001.
16// (C) Copyright Bill Kempf 2002.
17// (C) Copyright Jens Maurer 2002.
18// (C) Copyright David Abrahams 2002 - 2003.
19// (C) Copyright Gennaro Prota 2003.
20// (C) Copyright Eric Friedman 2003.
21// License: Boost Software License See LICENSE.txt for the full license.
22#ifndef BOOST_JOIN
23#define BOOST_JOIN( X, Y ) BOOST_DO_JOIN( X, Y )
24#define BOOST_DO_JOIN( X, Y ) BOOST_DO_JOIN2(X,Y)
25#define BOOST_DO_JOIN2( X, Y ) X##Y
26#endif
27
28#endif



Page generated by Doxygen 1.9.5 for MRPT 1.4.0 SVN: at Sun Nov 27 02:56:59 UTC 2022