add boost on mac

This commit is contained in:
Bassem Girgis
2019-08-10 16:38:17 -05:00
parent 861b918727
commit be945cb63b
14105 changed files with 2714968 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#ifndef BOOST_METAPARSE_V1_FWD_ACCEPT_HPP
#define BOOST_METAPARSE_V1_FWD_ACCEPT_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2014.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class Result, class Remaining, class Pos>
struct accept;
}
}
}
#endif

View File

@@ -0,0 +1,22 @@
#ifndef BOOST_METAPARSE_V1_FWD_BUILD_PARSER_HPP
#define BOOST_METAPARSE_V1_FWD_BUILD_PARSER_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class P>
struct build_parser;
}
}
}
#endif

View File

@@ -0,0 +1,26 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_COL_HPP
#define BOOST_METAPARSE_V1_FWD_GET_COL_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_col;
template <class>
struct get_col_impl;
}
}
}
#endif

View File

@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_LINE_HPP
#define BOOST_METAPARSE_V1_FWD_GET_LINE_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_line_impl;
template <class>
struct get_line;
}
}
}
#endif

View File

@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_MESSAGE_HPP
#define BOOST_METAPARSE_V1_FWD_GET_MESSAGE_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2014.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_message_impl;
template <class>
struct get_message;
}
}
}
#endif

View File

@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_POSITION_HPP
#define BOOST_METAPARSE_V1_FWD_GET_POSITION_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_position_impl;
template <class>
struct get_position;
}
}
}
#endif

View File

@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_PREV_CHAR_HPP
#define BOOST_METAPARSE_V1_FWD_GET_PREV_CHAR_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_prev_char_impl;
template <class>
struct get_prev_char;
}
}
}
#endif

View File

@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_REMAINING_HPP
#define BOOST_METAPARSE_V1_FWD_GET_REMAINING_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_remaining_impl;
template <class>
struct get_remaining;
}
}
}
#endif

View File

@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_RESULT_HPP
#define BOOST_METAPARSE_V1_FWD_GET_RESULT_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_result_impl;
template <class>
struct get_result;
}
}
}
#endif

View File

@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_NEXT_CHAR_HPP
#define BOOST_METAPARSE_V1_FWD_NEXT_CHAR_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class P>
struct next_char_impl;
template <class P, class Ch>
struct next_char;
}
}
}
#endif

View File

@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_NEXT_LINE_IMPL_HPP
#define BOOST_METAPARSE_V1_FWD_NEXT_LINE_IMPL_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class P>
struct next_line_impl;
template <class P, class Ch>
struct next_line;
}
}
}
#endif

View File

@@ -0,0 +1,22 @@
#ifndef BOOST_METAPARSE_V1_FWD_REJECT_HPP
#define BOOST_METAPARSE_V1_FWD_REJECT_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2014.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class Msg, class Pos>
struct reject;
}
}
}
#endif

View File

@@ -0,0 +1,22 @@
#ifndef BOOST_METAPARSE_V1_FWD_SOURCE_POSITION_HPP
#define BOOST_METAPARSE_V1_FWD_SOURCE_POSITION_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class Line, class Col, class PrevChar>
struct source_position;
}
}
}
#endif

View File

@@ -0,0 +1,18 @@
#ifndef BOOST_METAPARSE_V1_FWD_STRING_HPP
#define BOOST_METAPARSE_V1_FWD_STRING_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2017.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/config.hpp>
#if BOOST_METAPARSE_STD >= 2011
# include <boost/metaparse/v1/cpp11/fwd/string.hpp>
#else
# include <boost/metaparse/v1/cpp98/fwd/string.hpp>
#endif
#endif