added operator<< overloads for dynamic::Value

This commit is contained in:
MihailRis
2024-05-09 22:01:38 +03:00
parent debdec1dc2
commit 76f52037b5
4 changed files with 40 additions and 3 deletions
+4
View File
@@ -137,4 +137,8 @@ namespace dynamic {
};
}
std::ostream& operator<<(std::ostream& stream, const dynamic::Value& value);
std::ostream& operator<<(std::ostream& stream, const dynamic::Map_sptr& value);
std::ostream& operator<<(std::ostream& stream, const dynamic::List_sptr& value);
#endif // DATA_DYNAMIC_HPP_