aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-05-02 21:26:58 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-05-02 23:55:21 +0300
commit424e315dfa9a78aebf0653c95f83fe6ed452dd8e (patch)
tree59759d1d4eac4096df104d4dbab24a531ada3399 /examples
parent3d2b5b2a7064abe35614ebb32db03bd2881adcf0 (diff)
Add hxx extension for headers and libstud prefix for library dir
Diffstat (limited to 'examples')
-rw-r--r--examples/hybrid/dom.cxx4
-rw-r--r--examples/hybrid/dom.hxx4
-rw-r--r--examples/hybrid/driver.cxx4
-rw-r--r--examples/inheritance/driver.cxx4
-rw-r--r--examples/inheritance/position.cxx4
-rw-r--r--examples/inheritance/position.hxx2
-rw-r--r--examples/performance/driver.cxx2
-rw-r--r--examples/persistence/driver.cxx4
-rw-r--r--examples/persistence/position.cxx4
-rw-r--r--examples/persistence/position.hxx2
-rw-r--r--examples/processing/driver.cxx6
-rw-r--r--examples/roundtrip/driver.cxx4
-rw-r--r--examples/xhtml/driver.cxx2
13 files changed, 23 insertions, 23 deletions
diff --git a/examples/hybrid/dom.cxx b/examples/hybrid/dom.cxx
index c2ae6fd..5bdefc9 100644
--- a/examples/hybrid/dom.cxx
+++ b/examples/hybrid/dom.cxx
@@ -1,8 +1,8 @@
// file : examples/hybrid/dom.cxx
// copyright : not copyrighted - public domain
-#include <xml/parser>
-#include <xml/serializer>
+#include <libstudxml/parser.hxx>
+#include <libstudxml/serializer.hxx>
#include "dom.hxx"
diff --git a/examples/hybrid/dom.hxx b/examples/hybrid/dom.hxx
index 4d99feb..7897ab3 100644
--- a/examples/hybrid/dom.hxx
+++ b/examples/hybrid/dom.hxx
@@ -8,8 +8,8 @@
#include <string>
#include <vector>
-#include <xml/qname>
-#include <xml/forward>
+#include <libstudxml/qname.hxx>
+#include <libstudxml/forward.hxx>
// A simple, DOM-like in-memory representation of raw XML. It only supports
// empty, simple, and complex content (no mixed content) and is not
diff --git a/examples/hybrid/driver.cxx b/examples/hybrid/driver.cxx
index c1f5a0e..d2789a7 100644
--- a/examples/hybrid/driver.cxx
+++ b/examples/hybrid/driver.cxx
@@ -4,8 +4,8 @@
#include <fstream>
#include <iostream>
-#include <xml/parser>
-#include <xml/serializer>
+#include <libstudxml/parser.hxx>
+#include <libstudxml/serializer.hxx>
#include "dom.hxx"
diff --git a/examples/inheritance/driver.cxx b/examples/inheritance/driver.cxx
index c07a0ea..8fc23b1 100644
--- a/examples/inheritance/driver.cxx
+++ b/examples/inheritance/driver.cxx
@@ -4,8 +4,8 @@
#include <fstream>
#include <iostream>
-#include <xml/parser>
-#include <xml/serializer>
+#include <libstudxml/parser.hxx>
+#include <libstudxml/serializer.hxx>
#include "position.hxx"
diff --git a/examples/inheritance/position.cxx b/examples/inheritance/position.cxx
index 1123efa..cb16675 100644
--- a/examples/inheritance/position.cxx
+++ b/examples/inheritance/position.cxx
@@ -3,8 +3,8 @@
#include <iostream>
-#include <xml/parser>
-#include <xml/serializer>
+#include <libstudxml/parser.hxx>
+#include <libstudxml/serializer.hxx>
#include "position.hxx"
diff --git a/examples/inheritance/position.hxx b/examples/inheritance/position.hxx
index d6f3a3f..37b9f1a 100644
--- a/examples/inheritance/position.hxx
+++ b/examples/inheritance/position.hxx
@@ -8,7 +8,7 @@
#include <vector>
#include <iosfwd>
-#include <xml/forward> // xml::{parser,serializer} forward declarations.
+#include <libstudxml/forward.hxx> // xml::{parser,serializer} forward declarations.
class position
{
diff --git a/examples/performance/driver.cxx b/examples/performance/driver.cxx
index 403e821..13295ad 100644
--- a/examples/performance/driver.cxx
+++ b/examples/performance/driver.cxx
@@ -5,7 +5,7 @@
#include <fstream>
#include <iostream>
-#include <xml/parser>
+#include <libstudxml/parser.hxx>
#include "time.hxx"
diff --git a/examples/persistence/driver.cxx b/examples/persistence/driver.cxx
index 8792716..ab58982 100644
--- a/examples/persistence/driver.cxx
+++ b/examples/persistence/driver.cxx
@@ -4,8 +4,8 @@
#include <fstream>
#include <iostream>
-#include <xml/parser>
-#include <xml/serializer>
+#include <libstudxml/parser.hxx>
+#include <libstudxml/serializer.hxx>
#include "position.hxx"
diff --git a/examples/persistence/position.cxx b/examples/persistence/position.cxx
index a0430b4..554cf7d 100644
--- a/examples/persistence/position.cxx
+++ b/examples/persistence/position.cxx
@@ -3,8 +3,8 @@
#include <iostream>
-#include <xml/parser>
-#include <xml/serializer>
+#include <libstudxml/parser.hxx>
+#include <libstudxml/serializer.hxx>
#include "position.hxx"
diff --git a/examples/persistence/position.hxx b/examples/persistence/position.hxx
index fb8c897..aee7e0c 100644
--- a/examples/persistence/position.hxx
+++ b/examples/persistence/position.hxx
@@ -8,7 +8,7 @@
#include <vector>
#include <iosfwd>
-#include <xml/forward> // xml::{parser,serializer} forward declarations.
+#include <libstudxml/forward.hxx> // xml::{parser,serializer} forward declarations.
enum object_type {building, mountain};
diff --git a/examples/processing/driver.cxx b/examples/processing/driver.cxx
index 18950b2..f1f7461 100644
--- a/examples/processing/driver.cxx
+++ b/examples/processing/driver.cxx
@@ -5,9 +5,9 @@
#include <fstream>
#include <iostream>
-#include <xml/parser>
-#include <xml/serializer>
-#include <xml/value-traits>
+#include <libstudxml/parser.hxx>
+#include <libstudxml/serializer.hxx>
+#include <libstudxml/value-traits.hxx>
using namespace std;
using namespace xml;
diff --git a/examples/roundtrip/driver.cxx b/examples/roundtrip/driver.cxx
index 9b8d512..f2178eb 100644
--- a/examples/roundtrip/driver.cxx
+++ b/examples/roundtrip/driver.cxx
@@ -5,8 +5,8 @@
#include <fstream>
#include <iostream>
-#include <xml/parser>
-#include <xml/serializer>
+#include <libstudxml/parser.hxx>
+#include <libstudxml/serializer.hxx>
using namespace std;
using namespace xml;
diff --git a/examples/xhtml/driver.cxx b/examples/xhtml/driver.cxx
index d22defc..cb5bd17 100644
--- a/examples/xhtml/driver.cxx
+++ b/examples/xhtml/driver.cxx
@@ -3,7 +3,7 @@
#include <iostream>
-#include <xml/serializer>
+#include <libstudxml/serializer.hxx>
using namespace std;
using namespace xml;