mirror of
https://github.com/nlohmann/json.git
synced 2024-11-23 22:19:02 +08:00
13 lines
389 B
C++
13 lines
389 B
C++
// __ _____ _____ _____
|
|
// __| | __| | | | JSON for Modern C++ (supporting code)
|
|
// | | |__ | | | | | | version 3.11.3
|
|
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
//
|
|
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#include <nlohmann/json.hpp>
|
|
#include "Foo.hpp"
|
|
|
|
class Bar : public Foo {};
|