2020-04-11 16:43:38 +00:00
|
|
|
// This file is a part of toml++ and is subject to the the terms of the MIT license.
|
2021-01-02 15:48:47 +00:00
|
|
|
// Copyright (c) Mark Gillard <mark.gillard@outlook.com.au>
|
2020-04-11 16:43:38 +00:00
|
|
|
// See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
/*
|
|
|
|
|
2020-04-14 05:25:03 +00:00
|
|
|
This example demonstrates how to parse TOML from a file and
|
|
|
|
re-serialize it (print it out) to stdout.
|
2020-04-11 16:43:38 +00:00
|
|
|
|
|
|
|
*/
|
2020-01-04 14:21:38 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
2020-04-11 16:43:38 +00:00
|
|
|
#include "utf8_console.h"
|
2020-06-28 22:57:59 +00:00
|
|
|
|
2020-04-11 16:43:38 +00:00
|
|
|
#define TOML_UNRELEASED_FEATURES 1
|
2020-02-22 14:10:32 +00:00
|
|
|
#include <toml++/toml.h>
|
2020-06-28 22:57:59 +00:00
|
|
|
|
2020-01-04 14:21:38 +00:00
|
|
|
using namespace std::string_view_literals;
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2020-04-14 09:45:32 +00:00
|
|
|
std::ios_base::sync_with_stdio(false);
|
2020-04-11 16:43:38 +00:00
|
|
|
init_utf8_console();
|
2020-01-04 14:21:38 +00:00
|
|
|
|
|
|
|
auto path = std::string{ argc > 1 ? argv[1] : "example.toml" };
|
|
|
|
try
|
|
|
|
{
|
2020-06-08 15:31:23 +00:00
|
|
|
const auto tbl = toml::parse_file(path);
|
2020-08-11 13:34:03 +00:00
|
|
|
std::cout << tbl << "\n";
|
2020-01-04 14:21:38 +00:00
|
|
|
}
|
|
|
|
catch (const toml::parse_error& err)
|
|
|
|
{
|
2020-08-11 13:34:03 +00:00
|
|
|
std::cerr << err << "\n";
|
2020-01-04 14:21:38 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|