From 8f3d3956b1e837c726859eb8bbe19dad79c54a42 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Sat, 29 Apr 2017 23:55:46 +0300 Subject: Add hxx extension for headers and lib prefix for library dirs --- web/xhtml-fragment | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 web/xhtml-fragment (limited to 'web/xhtml-fragment') diff --git a/web/xhtml-fragment b/web/xhtml-fragment deleted file mode 100644 index 9f602e0..0000000 --- a/web/xhtml-fragment +++ /dev/null @@ -1,48 +0,0 @@ -// file : web/xhtml-fragment -*- C++ -*- -// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd -// license : MIT; see accompanying LICENSE file - -#ifndef WEB_XHTML_FRAGMENT -#define WEB_XHTML_FRAGMENT - -#include -#include -#include // pair - -#include -#include - -namespace web -{ - namespace xhtml - { - // A parsed (via xml::parser) XHTML fragment that can later be serialized - // to xml::serializer. - // - class fragment - { - public: - fragment () = default; - - // Parse string as XHTML document fragment. The fragment should be - // complete, in the sense that all elements should have closing tags. - // Elements and attributes are considered to be in the namespace of the - // entire XHTML document, so no namespace should be specified for them. - // Do not validate against XHTML vocabulary. Can throw xml::parsing - // exception. - // - fragment (const std::string& xhtml, const std::string& input_name); - - void - operator() (xml::serializer&) const; - - bool - empty () const {return events_.empty ();} - - private: - std::vector> events_; - }; - } -} - -#endif // WEB_XHTML_FRAGMENT -- cgit v1.1