diff options
Diffstat (limited to 'examples/hybrid')
-rw-r--r-- | examples/hybrid/dom.cxx | 4 | ||||
-rw-r--r-- | examples/hybrid/dom.hxx | 4 | ||||
-rw-r--r-- | examples/hybrid/driver.cxx | 4 | ||||
-rw-r--r-- | examples/hybrid/makefile | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/examples/hybrid/dom.cxx b/examples/hybrid/dom.cxx index cd1e0e0..c2ae6fd 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.hxx> -#include <xml/serializer.hxx> +#include <xml/parser> +#include <xml/serializer> #include "dom.hxx" diff --git a/examples/hybrid/dom.hxx b/examples/hybrid/dom.hxx index 3e1f8e3..4d99feb 100644 --- a/examples/hybrid/dom.hxx +++ b/examples/hybrid/dom.hxx @@ -8,8 +8,8 @@ #include <string> #include <vector> -#include <xml/qname.hxx> -#include <xml/forward.hxx> +#include <xml/qname> +#include <xml/forward> // 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 ca7421a..c1f5a0e 100644 --- a/examples/hybrid/driver.cxx +++ b/examples/hybrid/driver.cxx @@ -4,8 +4,8 @@ #include <fstream> #include <iostream> -#include <xml/parser.hxx> -#include <xml/serializer.hxx> +#include <xml/parser> +#include <xml/serializer> #include "dom.hxx" diff --git a/examples/hybrid/makefile b/examples/hybrid/makefile index 8e4a4f8..fe9439b 100644 --- a/examples/hybrid/makefile +++ b/examples/hybrid/makefile @@ -32,7 +32,7 @@ $(out_base)/: $(driver) # $(dist): name := $(subst $(src_root)/examples/,,$(src_base)) $(dist): sources := $(cxx_tun) -$(dist): extras := README dom.xml +$(dist): extras := README position.xml $(dist): export extra_sources := $(filter-out driver.cxx,$(cxx_tun)) $(dist): export extra_headers := dom.hxx $(dist): export extra_dist := $(extras) $(name)-vc9.vcproj \ |