From 7e7153457722ff2272bf094cca5387bd2e2ebd71 Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine@gmail.com" Date: Sun, 29 Apr 2012 22:51:21 +0000 Subject: docs: Regenerated HTML documentation git-svn-id: http://pugixml.googlecode.com/svn/trunk@908 99668b35-9821-0410-8761-19e4c4f06640 --- docs/manual/apiref.html | 182 ++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 170 insertions(+), 12 deletions(-) (limited to 'docs/manual/apiref.html') diff --git a/docs/manual/apiref.html b/docs/manual/apiref.html index 5737c51..cf1a137 100644 --- a/docs/manual/apiref.html +++ b/docs/manual/apiref.html @@ -4,15 +4,15 @@ API Reference - - + +
-pugixml 1.0 manual | +pugixml 1.2 manual | Overview | Installation | Document: @@ -60,6 +60,18 @@
  • #define PUGIXML_FUNCTION
  • +
  • + #define PUGIXML_MEMORY_PAGE_SIZE +
  • +
  • + #define PUGIXML_MEMORY_OUTPUT_STACK +
  • +
  • + #define PUGIXML_MEMORY_XPATH_PAGE_SIZE +
  • +
  • + #define PUGIXML_HEADER_ONLY +
  • Types: @@ -199,7 +211,10 @@ encoding_utf32

  • - encoding_wchar

    + encoding_wchar +
  • +
  • + encoding_latin1

  • @@ -241,9 +256,15 @@
  • format_no_declaration
  • +
  • + format_no_escapes +
  • format_raw
  • +
  • + format_save_file_text +
  • format_write_bom

    @@ -286,6 +307,9 @@
  • parse_ws_pcdata
  • +
  • + parse_ws_pcdata_single +
  • parse_wconv_attribute
  • @@ -364,20 +388,38 @@
  • - int as_int() const; + const char_t* as_string(const char_t* + def = + "") + const; +
  • +
  • + int as_int(int def = + 0) + const;
  • unsigned int - as_uint() const; + as_uint(unsigned + int def + = 0) const;
  • - double as_double() const; + double as_double(double + def = + 0) + const;
  • - float as_float() const; + float as_float(float def = + 0) + const;
  • - bool as_bool() const;

    + bool as_bool(bool def = + false) + const; +

  • @@ -517,6 +559,18 @@
  • 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* @@ -557,7 +611,9 @@ const char_t* child_value(const char_t* name) const; -

    +
  • +
  • + xml_text text() const;

  • @@ -1023,6 +1079,108 @@
  • +
  • + 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; +

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

      + +
    • +
    • + bool set(int rhs); +
    • +
    • + bool set(unsigned + int rhs); +
    • +
    • + bool set(double + rhs); +
    • +
    • + bool set(bool 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=(bool rhs); +

      + +
    • +
    • + xml_node data() const;

      + +
    • +
    +
  • class xml_writer
    • @@ -1371,7 +1529,7 @@
    - @@ -1379,7 +1537,7 @@
    -pugixml 1.0 manual | +pugixml 1.2 manual | Overview | Installation | Document: -- cgit v1.2.3