Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of MbedJSONValue by
Revision 5:8730f0b6605e, committed 2017-03-15
- Comitter:
- AlexVC97
- Date:
- Wed Mar 15 07:54:44 2017 +0000
- Parent:
- 4:10a99cdf7846
- Commit message:
- JSON in mbed
Changed in this revision
MbedJSONValue.cpp | Show annotated file Show diff for this revision Revisions of this file |
MbedJSONValue.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 10a99cdf7846 -r 8730f0b6605e MbedJSONValue.cpp --- a/MbedJSONValue.cpp Thu Sep 22 10:57:37 2011 +0000 +++ b/MbedJSONValue.cpp Wed Mar 15 07:54:44 2017 +0000 @@ -3,6 +3,9 @@ # include <stdlib.h> # include <stdio.h> +namespace VivesCityGame +{ + // Clean up void MbedJSONValue::clean() { switch (_type) { @@ -242,4 +245,5 @@ } return -1; } +};
diff -r 10a99cdf7846 -r 8730f0b6605e MbedJSONValue.h --- a/MbedJSONValue.h Thu Sep 22 10:57:37 2011 +0000 +++ b/MbedJSONValue.h Wed Mar 15 07:54:44 2017 +0000 @@ -98,6 +98,10 @@ * } * @endcode */ + +namespace VivesCityGame +{ + class MbedJSONValue { public: @@ -587,5 +591,6 @@ } return in.cur(); } +}; #endif // _MbedMbedJSONValue_H_