[Xmlstorage-commits] SF.net SVN: xmlstorage: [80] trunk/c++
Brought to you by:
martinfuchs
|
From: <mar...@us...> - 2008-02-04 09:27:52
|
Revision: 80
http://xmlstorage.svn.sourceforge.net/xmlstorage/?rev=80&view=rev
Author: martinfuchs
Date: 2008-02-04 01:27:51 -0800 (Mon, 04 Feb 2008)
Log Message:
-----------
add new example code
Modified Paths:
--------------
trunk/c++/Makefile
trunk/c++/Makefile.VC6
trunk/c++/example5.cpp
Modified: trunk/c++/Makefile
===================================================================
--- trunk/c++/Makefile 2008-01-31 23:22:34 UTC (rev 79)
+++ trunk/c++/Makefile 2008-02-04 09:27:51 UTC (rev 80)
@@ -4,6 +4,8 @@
g++ $(CFLAGS) xmlstorage.cpp xs-native.cpp example1.cpp -o example1
g++ $(CFLAGS) xmlstorage.cpp xs-native.cpp example2.cpp -o example2
g++ $(CFLAGS) xmlstorage.cpp xs-native.cpp example3.cpp -o example3
+ g++ $(CFLAGS) xmlstorage.cpp xs-native.cpp example3.cpp -o example4
+ g++ $(CFLAGS) xmlstorage.cpp xs-native.cpp example3.cpp -o example5
g++ $(CFLAGS) xmlstorage.cpp xs-native.cpp example-parse.cpp -o example-parse
g++ $(CFLAGS) xmlstorage.cpp xs-native.cpp writertest.cpp -o writertest
Modified: trunk/c++/Makefile.VC6
===================================================================
--- trunk/c++/Makefile.VC6 2008-01-31 23:22:34 UTC (rev 79)
+++ trunk/c++/Makefile.VC6 2008-02-04 09:27:51 UTC (rev 80)
@@ -16,7 +16,7 @@
xs-native.cpp xs-expat.cpp xs-xerces.cpp \
xmlstorage-license.txt
-EXAMPLES = example1.cpp example2.cpp example3.cpp
+EXAMPLES = example1.cpp example2.cpp example3.cpp example4.cpp example5.cpp example-parse.cpp example-xpath.cpp
TARGETS = $(PROJ)-$(VC_VER).lib $(PROJ)-$(VC_VER)d.lib $(PROJ)-$(VC_VER)l.lib $(PROJ)-$(VC_VER)t.lib
Modified: trunk/c++/example5.cpp
===================================================================
--- trunk/c++/example5.cpp 2008-01-31 23:22:34 UTC (rev 79)
+++ trunk/c++/example5.cpp 2008-02-04 09:27:51 UTC (rev 80)
@@ -82,6 +82,7 @@
pos.go_down("PERSON");
// pos.remove_children("VORNAME");
+
pos.go_down("VORNAME");
pos.delete_this();
pos.back(); // </PERSON>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|