mirror of
https://github.com/ToruNiina/toml11.git
synced 2024-11-23 04:40:06 +00:00
63 lines
2.2 KiB
C++
63 lines
2.2 KiB
C++
#ifndef TOML11_TOML_HPP
|
|
#define TOML11_TOML_HPP
|
|
|
|
// The MIT License (MIT)
|
|
//
|
|
// Copyright (c) 2017-now Toru Niina
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
// IWYU pragma: begin_exports
|
|
#include "toml11/color.hpp"
|
|
#include "toml11/comments.hpp"
|
|
#include "toml11/compat.hpp"
|
|
#include "toml11/context.hpp"
|
|
#include "toml11/conversion.hpp"
|
|
#include "toml11/datetime.hpp"
|
|
#include "toml11/error_info.hpp"
|
|
#include "toml11/exception.hpp"
|
|
#include "toml11/find.hpp"
|
|
#include "toml11/format.hpp"
|
|
#include "toml11/from.hpp"
|
|
#include "toml11/get.hpp"
|
|
#include "toml11/into.hpp"
|
|
#include "toml11/literal.hpp"
|
|
#include "toml11/location.hpp"
|
|
#include "toml11/ordered_map.hpp"
|
|
#include "toml11/parser.hpp"
|
|
#include "toml11/region.hpp"
|
|
#include "toml11/result.hpp"
|
|
#include "toml11/scanner.hpp"
|
|
#include "toml11/serializer.hpp"
|
|
#include "toml11/skip.hpp"
|
|
#include "toml11/source_location.hpp"
|
|
#include "toml11/spec.hpp"
|
|
#include "toml11/storage.hpp"
|
|
#include "toml11/syntax.hpp"
|
|
#include "toml11/traits.hpp"
|
|
#include "toml11/types.hpp"
|
|
#include "toml11/utility.hpp"
|
|
#include "toml11/value.hpp"
|
|
#include "toml11/value_t.hpp"
|
|
#include "toml11/version.hpp"
|
|
#include "toml11/visit.hpp"
|
|
// IWYU pragma: end_exports
|
|
|
|
#endif// TOML11_TOML_HPP
|