Added thirdparty: boost library

This commit is contained in:
Viacheslav Demydiuk
2024-01-06 19:55:56 +02:00
parent bf49f439e1
commit bccd1e7051
15683 changed files with 3239840 additions and 0 deletions
+22
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
+22
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
+26
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
+25
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
+25
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
+25
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
+25
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
+25
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
+25
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
+25
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
+25
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
+22
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
+22
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
+18
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