2
0
mirror of https://github.com/boostorg/json.git synced 2026-02-12 00:02:14 +00:00

Add examples

This commit is contained in:
Vinnie Falco
2019-11-15 11:40:32 -08:00
parent 0f6996e56c
commit 8f1348ed40
15 changed files with 266 additions and 21 deletions

18
example/allocator.cpp Normal file
View File

@@ -0,0 +1,18 @@
//
// Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
//
// 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)
//
// Official repository: https://github.com/vinniefalco/json
//
/*
This example implements a custom storage adaptor
which uses any standard C++ allocator.
*/
int
main()
{
}