[SAMPLE] update new URI
This commit is contained in:
parent
0087c41321
commit
3826dfb41a
@ -21,7 +21,7 @@ File to read: "read.xml"
|
|||||||
Reading a file is done like this:
|
Reading a file is done like this:
|
||||||
@snippet read.cpp exml_sample_read_file
|
@snippet read.cpp exml_sample_read_file
|
||||||
|
|
||||||
The file naming is manage by @ref etk::FSNode that provide "DATA:" start string for internal application asset. You can use external path like "./plop/file.xml" too.
|
The file naming is manage by @ref etk::FSNode that provide "DATA:///" start string for internal application asset. You can use external path like "./plop/file.xml" too.
|
||||||
|
|
||||||
|
|
||||||
Read an XML Stream {#exml_tutorial_read_stream}
|
Read an XML Stream {#exml_tutorial_read_stream}
|
||||||
|
@ -17,7 +17,7 @@ static void readFromFile() {
|
|||||||
exml::Document doc;
|
exml::Document doc;
|
||||||
//! [exml_sample_declare_doc]
|
//! [exml_sample_declare_doc]
|
||||||
//! [exml_sample_read_file]
|
//! [exml_sample_read_file]
|
||||||
bool retParse = doc.load("DATA:read.xml");
|
bool retParse = doc.load("DATA:///read.xml");
|
||||||
//! [exml_sample_read_file]
|
//! [exml_sample_read_file]
|
||||||
TEST_INFO("parse ret = " << retParse);
|
TEST_INFO("parse ret = " << retParse);
|
||||||
TEST_INFO("Debug display of the tree:");
|
TEST_INFO("Debug display of the tree:");
|
||||||
@ -56,7 +56,7 @@ static void readFromString2() {
|
|||||||
static void readFull() {
|
static void readFull() {
|
||||||
exml::Document doc;
|
exml::Document doc;
|
||||||
TEST_INFO("parse");
|
TEST_INFO("parse");
|
||||||
bool retParse = doc.load("DATA:read.xml");
|
bool retParse = doc.load("DATA:///read.xml");
|
||||||
TEST_INFO("parse ret = " << retParse);
|
TEST_INFO("parse ret = " << retParse);
|
||||||
TEST_INFO("Debug display of the tree:");
|
TEST_INFO("Debug display of the tree:");
|
||||||
doc.display();
|
doc.display();
|
||||||
|
Loading…
Reference in New Issue
Block a user