We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dac7266 commit ca90b85Copy full SHA for ca90b85
1 file changed
lib/application_business_rules/serial_interface/JsonGenerator.hpp
@@ -1,8 +1,16 @@
1
/**
2
* \file .
3
+ * \brief Interface to JSON serializer.
4
*/
5
#pragma once
6
#include <string>
7
8
+/**
9
+ * Serializes an object to a JSON formatted string.
10
+ *
11
+ * @tparam T a serializable structure or container
12
+ * @param object data to be serialized
13
+ * @returns string JSON formatted
14
+ */
15
template <class T>
16
std::string toJsonString(const T &object);
0 commit comments