blob: df0d62b4aa677f2e4449e2ab702d98cf06d0733c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021
// MIT License
#pragma once
namespace ARDUINOJSON_NAMESPACE {
namespace storage_policies {
struct store_by_address {};
struct store_by_copy {};
struct decide_at_runtime {};
} // namespace storage_policies
} // namespace ARDUINOJSON_NAMESPACE
|