diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-03-19 15:41:36 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-03-19 15:41:36 +0100 |
commit | 018e1ba581ec6f01f069a45ec4cf89f152b44d5f (patch) | |
tree | 0e7dda4bb693a6714066fbe5efcd2f24ff7c1a65 /xsd/type-map/type-map.hxx | |
parent | 1c188393cd2e271ed2581471b601fb5960777fd8 (diff) |
remerge
Diffstat (limited to 'xsd/type-map/type-map.hxx')
-rw-r--r-- | xsd/type-map/type-map.hxx | 178 |
1 files changed, 0 insertions, 178 deletions
diff --git a/xsd/type-map/type-map.hxx b/xsd/type-map/type-map.hxx deleted file mode 100644 index dd2ec2c..0000000 --- a/xsd/type-map/type-map.hxx +++ /dev/null @@ -1,178 +0,0 @@ -// file : xsd/type-map/type-map.hxx -// license : GNU GPL v2 + exceptions; see accompanying LICENSE file - -#ifndef XSD_XSD_TYPE_MAP_TYPE_MAP_HXX -#define XSD_XSD_TYPE_MAP_TYPE_MAP_HXX - -#include <vector> - -#include <libcutl/re.hxx> - -#include <xsd/types.hxx> - -namespace TypeMap -{ - typedef cutl::re::wregex Pattern; - - class Type - { - public: - Type (String const& xsd_name, - String const& cxx_ret_name, - String const& cxx_arg_name) - : xsd_name_ (xsd_name), - cxx_ret_name_ (cxx_ret_name), - cxx_arg_name_ (cxx_arg_name) - { - } - - Type (Pattern const& xsd_name, - String const& cxx_ret_name, - String const& cxx_arg_name) - : xsd_name_ (xsd_name), - cxx_ret_name_ (cxx_ret_name), - cxx_arg_name_ (cxx_arg_name) - { - } - - Pattern const& - xsd_name () const - { - return xsd_name_; - } - - String const& - cxx_ret_name () const - { - return cxx_ret_name_; - } - - String const& - cxx_arg_name () const - { - return cxx_arg_name_; - } - - private: - Pattern xsd_name_; - String cxx_ret_name_; - String cxx_arg_name_; - }; - - class Namespace - { - public: - Namespace (String const& xsd_name) - : xsd_name_ (xsd_name), has_cxx_name_ (false) - { - } - - Namespace (Pattern const& xsd_name) - : xsd_name_ (xsd_name), has_cxx_name_ (false) - { - } - - Namespace (Pattern const& xsd_name, String const& cxx_name) - : xsd_name_ (xsd_name), has_cxx_name_ (true), cxx_name_ (cxx_name) - { - } - - Namespace (Pattern const& xsd_name, - bool has_cxx_name, - String const& cxx_name) - : xsd_name_ (xsd_name), - has_cxx_name_ (has_cxx_name), - cxx_name_ (cxx_name) - { - } - - // - // - typedef std::vector<String> Includes; - typedef Includes::const_iterator IncludesIterator; - - IncludesIterator - includes_begin () const - { - return includes_.begin (); - } - - IncludesIterator - includes_end () const - { - return includes_.end (); - } - - void - includes_push_back (String const& i) - { - includes_.push_back (i); - } - - // - // - typedef std::vector<Type> Types; - typedef Types::const_iterator TypesIterator; - - TypesIterator - types_begin () const - { - return types_.begin (); - } - - TypesIterator - types_end () const - { - return types_.end (); - } - - void - types_push_back (String const& xsd_type, - String const& cxx_ret_type, - String const& cxx_arg_type = L"") - { - types_.push_back (Type (xsd_type, cxx_ret_type, cxx_arg_type)); - } - - void - types_push_back (Pattern const& xsd_type, - String const& cxx_ret_type, - String const& cxx_arg_type = L"") - { - types_.push_back (Type (xsd_type, cxx_ret_type, cxx_arg_type)); - } - - // - // - Pattern const& - xsd_name () const - { - return xsd_name_; - } - - // - // - bool - has_cxx_name () const - { - return has_cxx_name_; - } - - String const& - cxx_name () const - { - return cxx_name_; - } - - private: - Includes includes_; - Types types_; - Pattern xsd_name_; - bool has_cxx_name_; - String cxx_name_; - }; - - typedef std::vector<Namespace> Namespaces; -} - -#endif // XSD_XSD_TYPE_MAP_TYPE_MAP_HXX |