diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-07-11 13:29:12 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-07-11 13:29:12 +0000 |
commit | fb507ab2d6f9eaa090671e40b582354b16f3821c (patch) | |
tree | 4cf47721ff98432595ea8704e2e8d421d1f3c913 /docs/samples/include.cpp | |
parent | f73df8d06e67f4a1d00b427d752fb0deab11e553 (diff) |
docs: Replaced all tabs with 4 spaces (guaranteed tab size)
git-svn-id: http://pugixml.googlecode.com/svn/trunk@591 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'docs/samples/include.cpp')
-rw-r--r-- | docs/samples/include.cpp | 68 |
1 files changed, 35 insertions, 33 deletions
diff --git a/docs/samples/include.cpp b/docs/samples/include.cpp index 528d016..0d80887 100644 --- a/docs/samples/include.cpp +++ b/docs/samples/include.cpp @@ -8,55 +8,57 @@ bool load_preprocess(pugi::xml_document& doc, const char* path); bool preprocess(pugi::xml_node node)
{
- for (pugi::xml_node child = node.first_child(); child; )
- {
- if (child.type() == pugi::node_pi && strcmp(child.name(), "include") == 0)
- {
- pugi::xml_node include = child;
+ for (pugi::xml_node child = node.first_child(); child; )
+ {
+ if (child.type() == pugi::node_pi && strcmp(child.name(), "include") == 0)
+ {
+ pugi::xml_node include = child;
- // load new preprocessed document (note: ideally this should handle relative paths)
- const char* path = include.value();
+ // load new preprocessed document (note: ideally this should handle relative paths)
+ const char* path = include.value();
- pugi::xml_document doc;
- if (!load_preprocess(doc, path)) return false;
+ pugi::xml_document doc;
+ if (!load_preprocess(doc, path)) return false;
- // insert the comment marker above include directive
- node.insert_child_before(pugi::node_comment, include).set_value(path);
+ // insert the comment marker above include directive
+ node.insert_child_before(pugi::node_comment, include).set_value(path);
- // copy the document above the include directive (this retains the original order!)
- for (pugi::xml_node ic = doc.first_child(); ic; ic = ic.next_sibling())
- {
- node.insert_copy_before(ic, include);
- }
+ // copy the document above the include directive (this retains the original order!)
+ for (pugi::xml_node ic = doc.first_child(); ic; ic = ic.next_sibling())
+ {
+ node.insert_copy_before(ic, include);
+ }
- // remove the include node and move to the next child
- child = child.next_sibling();
+ // remove the include node and move to the next child
+ child = child.next_sibling();
- node.remove_child(include);
- }
- else
- {
- if (!preprocess(child)) return false;
+ node.remove_child(include);
+ }
+ else
+ {
+ if (!preprocess(child)) return false;
- child = child.next_sibling();
- }
- }
+ child = child.next_sibling();
+ }
+ }
- return true;
+ return true;
}
bool load_preprocess(pugi::xml_document& doc, const char* path)
{
- pugi::xml_parse_result result = doc.load_file(path, pugi::parse_default | pugi::parse_pi); // for <?include?>
-
- return result ? preprocess(doc) : false;
+ pugi::xml_parse_result result = doc.load_file(path, pugi::parse_default | pugi::parse_pi); // for <?include?>
+
+ return result ? preprocess(doc) : false;
}
//]
int main()
{
- pugi::xml_document doc;
- if (!load_preprocess(doc, "character.xml")) return -1;
+ pugi::xml_document doc;
+ if (!load_preprocess(doc, "character.xml")) return -1;
- doc.print(std::cout);
+ doc.print(std::cout);
}
+
+// vim:et
|