From 58609480a1182719d436dae55de66fe483f63f76 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Fri, 20 Mar 2015 00:17:51 -0700 Subject: docs: Regenerate documentation --- docs/manual/apiref.html | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'docs/manual/apiref.html') diff --git a/docs/manual/apiref.html b/docs/manual/apiref.html index b9cbc77..04f8990 100644 --- a/docs/manual/apiref.html +++ b/docs/manual/apiref.html @@ -4,15 +4,15 @@ API Reference - - + +
-pugixml 1.5 manual | +pugixml 1.6 manual | Overview | Installation | Document: @@ -469,6 +469,9 @@ bool set_value(double rhs); +
  • + bool set_value(float rhs); +
  • bool set_value(bool rhs);
  • @@ -501,6 +504,10 @@ operator=(double rhs); +
  • + xml_attribute& + operator=(float rhs); +
  • xml_attribute& operator=(bool rhs); @@ -1232,6 +1239,9 @@ bool set(double rhs);
  • +
  • + bool set(float rhs); +
  • bool set(bool rhs);
  • @@ -1264,6 +1274,10 @@ operator=(double rhs); +
  • + xml_text& + operator=(float rhs); +
  • xml_text& operator=(bool rhs); @@ -1647,7 +1661,7 @@
    -pugixml 1.5 manual | +pugixml 1.6 manual | Overview | Installation | Document: -- cgit v1.2.3 From 2843f91d008990e9940e19dbdf8cd906ad1c057d Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Sat, 21 Mar 2015 21:04:28 -0700 Subject: docs: Remove old HTML documentation --- docs/manual/apiref.html | 1678 ----------------------------------------------- 1 file changed, 1678 deletions(-) delete mode 100644 docs/manual/apiref.html (limited to 'docs/manual/apiref.html') diff --git a/docs/manual/apiref.html b/docs/manual/apiref.html deleted file mode 100644 index 04f8990..0000000 --- a/docs/manual/apiref.html +++ /dev/null @@ -1,1678 +0,0 @@ - - - -API Reference - - - - - - - - - - - -
    -pugixml 1.6 manual | - Overview | - Installation | - Document: - Object model · Loading · Accessing · Modifying · Saving | - XPath | - API Reference | - Table of Contents -
    -PrevUpHomeNext -
    -
    -
    - -

    - This is the reference for all macros, types, enumerations, classes and functions - in pugixml. Each symbol is a link that leads to the relevant section of the - manual. -

    -

    - Macros: -

    -
    -

    - Types: -

    -
    -

    - Enumerations: -

    - -

    - Constants: -

    -
    -

    - Classes: -

    -
      -
    • - class xml_attribute -
        -
      • - xml_attribute();

        - -
      • -
      • - bool empty() const; -
      • -
      • - operator unspecified_bool_type() const;

        - -
      • -
      • - bool operator==(const xml_attribute& - r) - const; -
      • -
      • - bool operator!=(const xml_attribute& - r) - const; -
      • -
      • - bool operator<(const xml_attribute& - r) - const; -
      • -
      • - bool operator>(const xml_attribute& - r) - const; -
      • -
      • - bool operator<=(const xml_attribute& - r) - const; -
      • -
      • - bool operator>=(const xml_attribute& - r) - const; -

        - -
      • -
      • - size_t hash_value() const;

        - -
      • -
      • - xml_attribute next_attribute() const; -
      • -
      • - xml_attribute previous_attribute() const;

        - -
      • -
      • - const char_t* name() const; -
      • -
      • - const char_t* value() const;

        - -
      • -
      • - const char_t* as_string(const char_t* - def = - "") - const; -
      • -
      • - int as_int(int def = - 0) - const; -
      • -
      • - unsigned int - as_uint(unsigned - int def - = 0) const; -
      • -
      • - double as_double(double - def = - 0) - const; -
      • -
      • - float as_float(float def = - 0) - const; -
      • -
      • - bool as_bool(bool def = - false) - const; -
      • -
      • - long long - as_llong(long long def - = 0) const; -
      • -
      • - unsigned long - long as_ullong(unsigned - long long - def = - 0) - const; -

        - -
      • -
      • - bool set_name(const char_t* - rhs); -
      • -
      • - bool set_value(const char_t* - rhs); -
      • -
      • - bool set_value(int rhs); -
      • -
      • - bool set_value(unsigned - int rhs); -
      • -
      • - bool set_value(double - rhs); -
      • -
      • - bool set_value(float rhs); -
      • -
      • - bool set_value(bool rhs); -
      • -
      • - bool set_value(long long rhs); -
      • -
      • - bool set_value(unsigned - long long - rhs); -

        - -
      • -
      • - xml_attribute& - operator=(const char_t* - rhs); -
      • -
      • - xml_attribute& - operator=(int rhs); -
      • -
      • - xml_attribute& - operator=(unsigned - int rhs); -
      • -
      • - xml_attribute& - operator=(double - rhs); -
      • -
      • - xml_attribute& - operator=(float rhs); -
      • -
      • - xml_attribute& - operator=(bool rhs); -
      • -
      • - xml_attribute& - operator=(long long rhs); -
      • -
      • - xml_attribute& - operator=(unsnigned - long long - rhs); -

        - -
      • -
      -
    • -
    • - class xml_node -
        -
      • - xml_node(); -

        - -
      • -
      • - bool empty() const; -
      • -
      • - operator unspecified_bool_type() const;

        - -
      • -
      • - bool operator==(const xml_node& - r) - const; -
      • -
      • - bool operator!=(const xml_node& - r) - const; -
      • -
      • - bool operator<(const xml_node& - r) - const; -
      • -
      • - bool operator>(const xml_node& - r) - const; -
      • -
      • - bool operator<=(const xml_node& - r) - const; -
      • -
      • - bool operator>=(const xml_node& - r) - const; -

        - -
      • -
      • - size_t hash_value() const;

        - -
      • -
      • - xml_node_type type() - const; -

        - -
      • -
      • - const char_t* name() const; -
      • -
      • - const char_t* value() const;

        - -
      • -
      • - xml_node parent() const; -
      • -
      • - xml_node first_child() const; -
      • -
      • - xml_node last_child() const; -
      • -
      • - xml_node next_sibling() const; -
      • -
      • - xml_node previous_sibling() const;

        - -
      • -
      • - xml_attribute first_attribute() const; -
      • -
      • - xml_attribute last_attribute() const;

        - -
      • -
      • - implementation-defined type children() const; -
      • -
      • - implementation-defined type children(const char_t* - name) - const; -
      • -
      • - implementation-defined type attributes() const;

        - -
      • -
      • - xml_node child(const char_t* - name) - const; -
      • -
      • - xml_attribute attribute(const char_t* name) const; -
      • -
      • - xml_node next_sibling(const char_t* - name) - const; -
      • -
      • - xml_node previous_sibling(const char_t* - name) - const; -
      • -
      • - xml_node find_child_by_attribute(const char_t* - name, - const char_t* attr_name, const - char_t* - attr_value) - const; -
      • -
      • - xml_node find_child_by_attribute(const char_t* - attr_name, - const char_t* attr_value) const;

        - -
      • -
      • - const char_t* child_value() const; -
      • -
      • - const char_t* child_value(const char_t* - name) - const; -
      • -
      • - xml_text text() const;

        - -
      • -
      • - typedef xml_node_iterator - iterator; -
      • -
      • - iterator begin() const; -
      • -
      • - iterator end() const;

        - -
      • -
      • - typedef xml_attribute_iterator - attribute_iterator; -
      • -
      • - attribute_iterator attributes_begin() const; -
      • -
      • - attribute_iterator attributes_end() const;

        - -
      • -
      • - bool traverse(xml_tree_walker& walker);

        - -
      • -
      • - template <typename Predicate> xml_attribute - find_attribute(Predicate - pred) - const; -
      • -
      • - template <typename Predicate> xml_node - find_child(Predicate - pred) - const; -
      • -
      • - template <typename Predicate> xml_node - find_node(Predicate - pred) - const; -

        - -
      • -
      • - string_t path(char_t - delimiter = - '/') - const; -
      • -
      • - xml_node xml_node::first_element_by_path(const char_t* - path, - char_t delimiter - = '/') const; -
      • -
      • - xml_node root() const; -
      • -
      • - ptrdiff_t offset_debug() const;

        - -
      • -
      • - bool set_name(const char_t* - rhs); -
      • -
      • - bool set_value(const char_t* - rhs); -

        - -
      • -
      • - xml_attribute append_attribute(const char_t* - name); -
      • -
      • - xml_attribute prepend_attribute(const char_t* - name); -
      • -
      • - xml_attribute insert_attribute_after(const char_t* - name, - const xml_attribute& attr); -
      • -
      • - xml_attribute insert_attribute_before(const char_t* - name, - const xml_attribute& attr);

        - -
      • -
      • - xml_node append_child(xml_node_type - type = - node_element); -
      • -
      • - xml_node prepend_child(xml_node_type - type = - node_element); -
      • -
      • - xml_node insert_child_after(xml_node_type - type, - const xml_node& node); -
      • -
      • - xml_node insert_child_before(xml_node_type - type, - const xml_node& node);

        - -
      • -
      • - xml_node append_child(const char_t* - name); -
      • -
      • - xml_node prepend_child(const char_t* - name); -
      • -
      • - xml_node insert_child_after(const char_t* - name, - const xml_node& node); -
      • -
      • - xml_node insert_child_before(const char_t* - name, - const xml_node& node);

        - -
      • -
      • - xml_attribute append_copy(const xml_attribute& proto); -
      • -
      • - xml_attribute prepend_copy(const xml_attribute& - proto); -
      • -
      • - xml_attribute insert_copy_after(const xml_attribute& - proto, - const xml_attribute& attr); -
      • -
      • - xml_attribute insert_copy_before(const xml_attribute& - proto, - const xml_attribute& attr);

        - -
      • -
      • - xml_node append_copy(const xml_node& - proto); -
      • -
      • - xml_node prepend_copy(const xml_node& - proto); -
      • -
      • - xml_node insert_copy_after(const xml_node& - proto, - const xml_node& node); -
      • -
      • - xml_node insert_copy_before(const xml_node& - proto, - const xml_node& node);

        - -
      • -
      • - xml_node append_move(const xml_node& - moved); -
      • -
      • - xml_node prepend_move(const xml_node& - moved); -
      • -
      • - xml_node insert_move_after(const xml_node& - moved, - const xml_node& node); -
      • -
      • - xml_node insert_move_before(const xml_node& - moved, - const xml_node& node);

        - -
      • -
      • - bool remove_attribute(const xml_attribute& - a); -
      • -
      • - bool remove_attribute(const char_t* - name); -
      • -
      • - bool remove_child(const xml_node& - n); -
      • -
      • - bool remove_child(const char_t* - name); -

        - -
      • -
      • - xml_parse_result append_buffer(const void* contents, - size_t size, unsigned - int options - = parse_default, xml_encoding - encoding = - encoding_auto); -

        - -
      • -
      • - void print(xml_writer& writer, const - char_t* - indent = - "\t", - unsigned int - flags = - format_default, - xml_encoding encoding - = encoding_auto, unsigned - int depth - = 0) const; -
      • -
      • - void print(std::ostream& os, const - char_t* - indent = - "\t", - unsigned int - flags = - format_default, - xml_encoding encoding - = encoding_auto, unsigned - int depth - = 0) const; -
      • -
      • - void print(std::wostream& os, const - char_t* - indent = - "\t", - unsigned int - flags = - format_default, - unsigned int - depth = - 0) - const; -

        - -
      • -
      • - xpath_node select_node(const char_t* query, xpath_variable_set* variables - = 0) const; -
      • -
      • - xpath_node select_node(const xpath_query& - query) - const; -
      • -
      • - xpath_node_set select_nodes(const char_t* - query, - xpath_variable_set* - variables = - 0) - const; -
      • -
      • - xpath_node_set select_nodes(const xpath_query& - query) - const; -

        - -
      • -
      -
    • -
    • - class xml_document -
        -
      • - xml_document(); -
      • -
      • - ~xml_document();

        - -
      • -
      • - void reset(); -
      • -
      • - void reset(const xml_document& - proto); -

        - -
      • -
      • - xml_parse_result load(std::istream& - stream, - unsigned int - options = - parse_default, - xml_encoding encoding - = encoding_auto); -
      • -
      • - xml_parse_result load(std::wistream& - stream, - unsigned int - options = - parse_default); -

        - -
      • -
      • - xml_parse_result load_string(const char_t* - contents, - unsigned int - options = - parse_default); -

        - -
      • -
      • - xml_parse_result load_file(const char* path, unsigned - int options - = parse_default, xml_encoding - encoding = - encoding_auto); -
      • -
      • - xml_parse_result load_file(const wchar_t* - path, - unsigned int - options = - parse_default, - xml_encoding encoding - = encoding_auto);

        - -
      • -
      • - xml_parse_result load_buffer(const void* contents, - size_t size, unsigned - int options - = parse_default, xml_encoding - encoding = - encoding_auto); -
      • -
      • - xml_parse_result load_buffer_inplace(void* contents, size_t - size, - unsigned int - options = - parse_default, - xml_encoding encoding - = encoding_auto); -
      • -
      • - xml_parse_result load_buffer_inplace_own(void* contents, size_t - size, - unsigned int - options = - parse_default, - xml_encoding encoding - = encoding_auto);

        - -
      • -
      • - bool save_file(const char* path, - const char_t* indent - = "\t", unsigned - int flags - = format_default, xml_encoding - encoding = - encoding_auto) - const; -
      • -
      • - bool save_file(const wchar_t* - path, - const char_t* indent - = "\t", unsigned - int flags - = format_default, xml_encoding - encoding = - encoding_auto) - const; -

        - -
      • -
      • - void save(std::ostream& stream, const - char_t* - indent = - "\t", - unsigned int - flags = - format_default, - xml_encoding encoding - = encoding_auto) const; -
      • -
      • - void save(std::wostream& stream, const - char_t* - indent = - "\t", - unsigned int - flags = - format_default) - const; -

        - -
      • -
      • - void save(xml_writer& writer, const - char_t* - indent = - "\t", - unsigned int - flags = - format_default, - xml_encoding encoding - = encoding_auto) const;

        - -
      • -
      • - xml_node document_element() const;

        - -
      • -
      -
    • -
    • - struct xml_parse_result -
      -
    • -
    • - class xml_node_iterator -
    • -
    • - class xml_attribute_iterator -

      - -
    • -
    • - class xml_tree_walker -
        -
      • - virtual bool - begin(xml_node& node); -
      • -
      • - virtual bool - for_each(xml_node& node) = 0; -
      • -
      • - virtual bool - end(xml_node& node);

        - -
      • -
      • - int depth() const;

        - -
      • -
      -
    • -
    • - class xml_text -
        -
      • - bool empty() const; -
      • -
      • - operator xml_text::unspecified_bool_type() const;

        - -
      • -
      • - const char_t* xml_text::get() const;

        - -
      • -
      • - const char_t* as_string(const char_t* - def = - "") - const; -
      • -
      • - int as_int(int def = - 0) - const; -
      • -
      • - unsigned int - as_uint(unsigned - int def - = 0) const; -
      • -
      • - double as_double(double - def = - 0) - const; -
      • -
      • - float as_float(float def = - 0) - const; -
      • -
      • - bool as_bool(bool def = - false) - const; -
      • -
      • - long long - as_llong(long long def - = 0) const; -
      • -
      • - unsigned long - long as_ullong(unsigned - long long - def = - 0) - const; -

        - -
      • -
      • - bool set(const char_t* - rhs); -

        - -
      • -
      • - bool set(int rhs); -
      • -
      • - bool set(unsigned - int rhs); -
      • -
      • - bool set(double - rhs); -
      • -
      • - bool set(float rhs); -
      • -
      • - bool set(bool rhs); -
      • -
      • - bool set(long long rhs); -
      • -
      • - bool set(unsigned - long long - rhs); -

        - -
      • -
      • - xml_text& - operator=(const char_t* - rhs); -
      • -
      • - xml_text& - operator=(int rhs); -
      • -
      • - xml_text& - operator=(unsigned - int rhs); -
      • -
      • - xml_text& - operator=(double - rhs); -
      • -
      • - xml_text& - operator=(float rhs); -
      • -
      • - xml_text& - operator=(bool rhs); -
      • -
      • - xml_text& - operator=(long long rhs); -
      • -
      • - xml_text& - operator=(unsigned - long long - rhs); -

        - -
      • -
      • - xml_node data() const;

        - -
      • -
      -
    • -
    • - class xml_writer -
      • - virtual void - write(const void* data, - size_t size) = 0; -

        - -
      -
    • -
    • - class xml_writer_file: public xml_writer -
      -
    • -
    • - class xml_writer_stream: public xml_writer -
      -
    • -
    • - struct xpath_parse_result -
      -
    • -
    • - class xpath_query -
      -
    • -
    • - class xpath_exception: public std::exception -
        -
      • - virtual const - char* - what() const - throw(); -

        - -
      • -
      • - const xpath_parse_result& result() const;

        - -
      • -
      -
    • -
    • - class xpath_node -
      -
    • -
    • - class xpath_node_set -
      -
    • -
    • - class xpath_variable -
        -
      • - const char_t* name() const; -
      • -
      • - xpath_value_type type() - const; -

        - -
      • -
      • - bool get_boolean() const; -
      • -
      • - double get_number() const; -
      • -
      • - const char_t* get_string() const; -
      • -
      • - const xpath_node_set& get_node_set() const;

        - -
      • -
      • - bool set(bool value); -
      • -
      • - bool set(double - value); -
      • -
      • - bool set(const char_t* - value); -
      • -
      • - bool set(const xpath_node_set& - value); -

        - -
      • -
      -
    • -
    • - class xpath_variable_set -
        -
      • - xpath_variable* - add(const char_t* - name, - xpath_value_type type);

        - -
      • -
      • - bool set(const char_t* - name, - bool value); -
      • -
      • - bool set(const char_t* - name, - double value); -
      • -
      • - bool set(const char_t* - name, - const char_t* value); -
      • -
      • - bool set(const char_t* - name, - const xpath_node_set& value);

        - -
      • -
      • - xpath_variable* - get(const char_t* - name); -
      • -
      • - const xpath_variable* get(const char_t* - name) - const; -

        - -
      • -
      -
    • -
    -

    - Functions: -

    -
    -
    - - - -
    -
    - - - -
    -pugixml 1.6 manual | - Overview | - Installation | - Document: - Object model · Loading · Accessing · Modifying · Saving | - XPath | - API Reference | - Table of Contents -
    -PrevUpHomeNext -
    - - -- cgit v1.2.3