Skip to content

Commit 6a1babb

Browse files
authored
Update README.md
1 parent 22e67d7 commit 6a1babb

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ Dependencies:
3939
## Example0
4040
```C++
4141
#ifndef Q_MOC_RUN // A Qt workaround, for those of you who use Qt
42-
# include "SimpleJSON/parse/jsd.hpp"
43-
# include "SimpleJSON/stringify/jss.hpp"
44-
# include "SimpleJSON/stringify/jss_fusion_adapted_struct.hpp"
42+
# include <SimpleJSON/parse/jsd.hpp>
43+
# include <SimpleJSON/stringify/jss.hpp>
44+
# include <SimpleJSON/stringify/jss_fusion_adapted_struct.hpp>
4545
#endif
4646

4747
struct Object : public JSON::Stringifiable <Object>
@@ -68,10 +68,10 @@ int main()
6868
## Example1
6969
```C++
7070
#ifndef Q_MOC_RUN // A Qt workaround, for those of you who use Qt
71-
# include "SimpleJSON/parse/jsd.hpp"
72-
# include "SimpleJSON/parse/jsd_convenience.hpp"
73-
# include "SimpleJSON/stringify/jss.hpp"
74-
# include "SimpleJSON/stringify/jss_fusion_adapted_struct.hpp"
71+
# include <SimpleJSON/parse/jsd.hpp>
72+
# include <SimpleJSON/parse/jsd_convenience.hpp>
73+
# include <SimpleJSON/stringify/jss.hpp>
74+
# include <SimpleJSON/stringify/jss_fusion_adapted_struct.hpp>
7575
#endif
7676
7777
#include <string>
@@ -137,10 +137,10 @@ int main()
137137
(Showing polymorphic serlialization / deserialization)
138138
```C++
139139
#ifndef Q_MOC_RUN // A Qt workaround, for those of you who use Qt
140-
# include "SimpleJSON/parse/jsd.hpp"
141-
# include "SimpleJSON/parse/jsd_convenience.hpp"
142-
# include "SimpleJSON/stringify/jss.hpp"
143-
# include "SimpleJSON/stringify/jss_fusion_adapted_struct.hpp"
140+
# include <SimpleJSON/parse/jsd.hpp>
141+
# include <SimpleJSON/parse/jsd_convenience.hpp>
142+
# include <SimpleJSON/stringify/jss.hpp>
143+
# include <SimpleJSON/stringify/jss_fusion_adapted_struct.hpp>
144144
#endif
145145

146146
#include "SimpleJSON/utility/polymorphy.hpp"

0 commit comments

Comments
 (0)