diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-05-03 00:04:59 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-05-03 00:04:59 +0300 |
commit | 6cfdf7e46444884fb8e20a916d6d5fce3f05d767 (patch) | |
tree | 502480d283fd0b927f2487b11ecd1db0482bf60b | |
parent | 1dcd92e762beb8e6a5abfdbd025df28eeda5fd51 (diff) |
Adapt to adding hxx extension for headers and libstud prefix for library dir in libstudxml
-rw-r--r-- | mod/mod-package-details.cxx | 2 | ||||
-rw-r--r-- | mod/mod-package-search.cxx | 2 | ||||
-rw-r--r-- | mod/mod-package-version-details.cxx | 2 | ||||
-rw-r--r-- | mod/mod-repository-details.cxx | 2 | ||||
-rw-r--r-- | mod/page.cxx | 2 | ||||
-rw-r--r-- | mod/page.hxx | 2 | ||||
-rw-r--r-- | tests/web/xhtml/driver.cxx | 2 | ||||
-rw-r--r-- | web/xhtml-fragment.cxx | 4 | ||||
-rw-r--r-- | web/xhtml-fragment.hxx | 4 | ||||
-rw-r--r-- | web/xhtml.hxx | 2 |
10 files changed, 12 insertions, 12 deletions
diff --git a/mod/mod-package-details.cxx b/mod/mod-package-details.cxx index 9a9bfcc..a241c23 100644 --- a/mod/mod-package-details.cxx +++ b/mod/mod-package-details.cxx @@ -4,7 +4,7 @@ #include <mod/mod-package-details.hxx> -#include <xml/serializer> +#include <libstudxml/serializer.hxx> #include <odb/session.hxx> #include <odb/database.hxx> diff --git a/mod/mod-package-search.cxx b/mod/mod-package-search.cxx index 8897792..23db29a 100644 --- a/mod/mod-package-search.cxx +++ b/mod/mod-package-search.cxx @@ -4,7 +4,7 @@ #include <mod/mod-package-search.hxx> -#include <xml/serializer> +#include <libstudxml/serializer.hxx> #include <odb/session.hxx> #include <odb/database.hxx> diff --git a/mod/mod-package-version-details.cxx b/mod/mod-package-version-details.cxx index 34c7f3b..37a50c8 100644 --- a/mod/mod-package-version-details.cxx +++ b/mod/mod-package-version-details.cxx @@ -4,7 +4,7 @@ #include <mod/mod-package-version-details.hxx> -#include <xml/serializer> +#include <libstudxml/serializer.hxx> #include <odb/session.hxx> #include <odb/database.hxx> diff --git a/mod/mod-repository-details.cxx b/mod/mod-repository-details.cxx index e433e0a..be87d89 100644 --- a/mod/mod-repository-details.cxx +++ b/mod/mod-repository-details.cxx @@ -9,7 +9,7 @@ #include <sstream> #include <algorithm> // max() -#include <xml/serializer> +#include <libstudxml/serializer.hxx> #include <odb/database.hxx> #include <odb/transaction.hxx> diff --git a/mod/page.cxx b/mod/page.cxx index 8d8e6e6..bf090ef 100644 --- a/mod/page.cxx +++ b/mod/page.cxx @@ -10,7 +10,7 @@ #include <iomanip> // setw(), setfill() #include <algorithm> // min() -#include <xml/serializer> +#include <libstudxml/serializer.hxx> #include <web/xhtml.hxx> #include <web/mime-url-encoding.hxx> diff --git a/mod/page.hxx b/mod/page.hxx index d79860d..b7f895e 100644 --- a/mod/page.hxx +++ b/mod/page.hxx @@ -5,7 +5,7 @@ #ifndef MOD_PAGE_HXX #define MOD_PAGE_HXX -#include <xml/forward> +#include <libstudxml/forward.hxx> #include <web/xhtml-fragment.hxx> diff --git a/tests/web/xhtml/driver.cxx b/tests/web/xhtml/driver.cxx index 7d9a536..4cd1584 100644 --- a/tests/web/xhtml/driver.cxx +++ b/tests/web/xhtml/driver.cxx @@ -5,7 +5,7 @@ #include <iostream> #include <functional> -#include <xml/serializer> +#include <libstudxml/serializer.hxx> #include <web/xhtml.hxx> diff --git a/web/xhtml-fragment.cxx b/web/xhtml-fragment.cxx index 1d883ae..bed84be 100644 --- a/web/xhtml-fragment.cxx +++ b/web/xhtml-fragment.cxx @@ -7,8 +7,8 @@ #include <string> #include <cassert> -#include <xml/parser> -#include <xml/serializer> +#include <libstudxml/parser.hxx> +#include <libstudxml/serializer.hxx> #include <web/xhtml.hxx> diff --git a/web/xhtml-fragment.hxx b/web/xhtml-fragment.hxx index 9d58bbf..81064f7 100644 --- a/web/xhtml-fragment.hxx +++ b/web/xhtml-fragment.hxx @@ -9,8 +9,8 @@ #include <vector> #include <utility> // pair -#include <xml/parser> -#include <xml/forward> +#include <libstudxml/parser.hxx> +#include <libstudxml/forward.hxx> namespace web { diff --git a/web/xhtml.hxx b/web/xhtml.hxx index 0809860..878c255 100644 --- a/web/xhtml.hxx +++ b/web/xhtml.hxx @@ -5,7 +5,7 @@ #ifndef WEB_XHTML_HXX #define WEB_XHTML_HXX -#include <xml/serializer> +#include <libstudxml/serializer.hxx> namespace web { |