summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/Strings/StoragePolicy.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/lib/ArduinoJson/Strings/StoragePolicy.hpp')
-rw-r--r--include/lib/ArduinoJson/Strings/StoragePolicy.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/lib/ArduinoJson/Strings/StoragePolicy.hpp b/include/lib/ArduinoJson/Strings/StoragePolicy.hpp
new file mode 100644
index 0000000..df0d62b
--- /dev/null
+++ b/include/lib/ArduinoJson/Strings/StoragePolicy.hpp
@@ -0,0 +1,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