Skip to content

Commit 84d47b1

Browse files
committed
Merge branch 'master' of github.com:5cript/SimpleJSON
2 parents fc62449 + c48ee99 commit 84d47b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ Code example:
4747
#include <vector>
4848
#include <sstream>
4949

50-
struct ConfigContent : public JSON::FusionStruct <ConfigContent>
51-
, public JSON::ParsableStruct <ConfigContent>
50+
struct ConfigContent : public JSON::Stringifiable <ConfigContent>
51+
, public JSON::Parsable <ConfigContent>
5252
{
5353
int id;
5454
std::string libPath;
@@ -108,7 +108,7 @@ There is just one function for stringification. This stringify function is heavi
108108
109109
* The library supports almost all STL containers (stringify supports even more) as well as fundamental types. <br>
110110
* Containers will decay into json arrays, if their value_type is a stringifiable (this is recursive).
111-
* Classes will turn into objects, if it is adapted, derives from FusionStruct<> and each member is stringifiable.
111+
* Classes will turn into objects, if it is adapted, derives from Stringifiable<> and each member is stringifiable.
112112
* For other classes, the "stringify" method is called, if provided, but then you will have to make sure on your own to produce a valid output. (The base64 wrapper uses this).
113113
114114
### stringify behaviour (and STL stuff stringification)

0 commit comments

Comments
 (0)