[DOC] update

This commit is contained in:
Edouard DUPIN 2016-09-16 21:31:38 +02:00
parent df2645ee4d
commit 76b9a23fc6
4 changed files with 2 additions and 6 deletions

View File

@ -102,5 +102,5 @@ This is named cloning:
All example file {#ejson_tutorial_read_all} All example file {#ejson_tutorial_read_all}
================ ================
@snippet read.cpp ejson_sample_read_all @include read.cpp

View File

@ -64,5 +64,5 @@ Then if you asign an element to an other, it is the same. You need to clone it i
All example file {#ejson_tutorial_write_all} All example file {#ejson_tutorial_write_all}
================ ================
@snippet write.cpp ejson_sample_write_all @include write.cpp

View File

@ -4,7 +4,6 @@
* @license APACHE v2.0 (see license file) * @license APACHE v2.0 (see license file)
*/ */
//! [ejson_sample_read_all]
#include <test-debug/debug.h> #include <test-debug/debug.h>
//! [ejson_sample_include] //! [ejson_sample_include]
#include <ejson/ejson.h> #include <ejson/ejson.h>
@ -274,4 +273,3 @@ void appl::read() {
readFromString1(); readFromString1();
readFull(); readFull();
} }
//! [ejson_sample_read_all]

View File

@ -4,7 +4,6 @@
* @license APACHE v2.0 (see license file) * @license APACHE v2.0 (see license file)
*/ */
//! [ejson_sample_write_all]
#include <test-debug/debug.h> #include <test-debug/debug.h>
#include <ejson/ejson.h> #include <ejson/ejson.h>
#include "write.h" #include "write.h"
@ -93,5 +92,4 @@ void appl::write() {
writeToString(); writeToString();
writeAll(); writeAll();
} }
//! [ejson_sample_write_all]