From ac4a84df4dd0f625f6b98ceb7ac594c80818fc1c Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Tue, 2 Feb 2016 08:52:47 -0800 Subject: docs: Add documentation for long setters --- docs/manual.adoc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'docs') diff --git a/docs/manual.adoc b/docs/manual.adoc index 982926f..d1c33cf 100644 --- a/docs/manual.adoc +++ b/docs/manual.adoc @@ -1284,6 +1284,8 @@ In addition to string functions, several functions are provided for handling att ---- bool xml_attribute::set_value(int rhs); bool xml_attribute::set_value(unsigned int rhs); +bool xml_attribute::set_value(long rhs); +bool xml_attribute::set_value(unsigned long rhs); bool xml_attribute::set_value(double rhs); bool xml_attribute::set_value(float rhs); bool xml_attribute::set_value(bool rhs); @@ -1306,6 +1308,8 @@ For convenience, all `set_value` functions have the corresponding assignment ope xml_attribute& xml_attribute::operator=(const char_t* rhs); xml_attribute& xml_attribute::operator=(int rhs); xml_attribute& xml_attribute::operator=(unsigned int rhs); +xml_attribute& xml_attribute::operator=(long rhs); +xml_attribute& xml_attribute::operator=(unsigned long rhs); xml_attribute& xml_attribute::operator=(double rhs); xml_attribute& xml_attribute::operator=(float rhs); xml_attribute& xml_attribute::operator=(bool rhs); @@ -1430,6 +1434,8 @@ In addition to a string function, several functions are provided for handling te ---- bool xml_text::set(int rhs); bool xml_text::set(unsigned int rhs); +bool xml_text::set(long rhs); +bool xml_text::set(unsigned long rhs); bool xml_text::set(double rhs); bool xml_text::set(float rhs); bool xml_text::set(bool rhs); @@ -1448,6 +1454,8 @@ For convenience, all `set` functions have the corresponding assignment operators xml_text& xml_text::operator=(const char_t* rhs); xml_text& xml_text::operator=(int rhs); xml_text& xml_text::operator=(unsigned int rhs); +xml_text& xml_text::operator=(long rhs); +xml_text& xml_text::operator=(unsigned long rhs); xml_text& xml_text::operator=(double rhs); xml_text& xml_text::operator=(float rhs); xml_text& xml_text::operator=(bool rhs); @@ -2658,6 +2666,8 @@ const unsigned int +++parse_wnorm_attribute bool +++set_value+++(const char_t* rhs); bool +++set_value+++(int rhs); bool +++set_value+++(unsigned int rhs); + bool +++set_value+++(long rhs); + bool +++set_value+++(unsigned long rhs); bool +++set_value+++(double rhs); bool +++set_value+++(float rhs); bool +++set_value+++(bool rhs); @@ -2667,6 +2677,8 @@ const unsigned int +++parse_wnorm_attribute xml_attribute& +++operator=+++(const char_t* rhs); xml_attribute& +++operator=+++(int rhs); xml_attribute& +++operator=+++(unsigned int rhs); + xml_attribute& +++operator=+++(long rhs); + xml_attribute& +++operator=+++(unsigned long rhs); xml_attribute& +++operator=+++(double rhs); xml_attribute& +++operator=+++(float rhs); xml_attribute& +++operator=+++(bool rhs); @@ -2851,6 +2863,8 @@ const unsigned int +++parse_wnorm_attribute bool +++set+++(int rhs); bool +++set+++(unsigned int rhs); + bool +++set+++(long rhs); + bool +++set+++(unsigned long rhs); bool +++set+++(double rhs); bool +++set+++(float rhs); bool +++set+++(bool rhs); @@ -2860,6 +2874,8 @@ const unsigned int +++parse_wnorm_attribute xml_text& +++operator=+++(const char_t* rhs); xml_text& +++operator=+++(int rhs); xml_text& +++operator=+++(unsigned int rhs); + xml_text& +++operator=+++(long rhs); + xml_text& +++operator=+++(unsigned long rhs); xml_text& +++operator=+++(double rhs); xml_text& +++operator=+++(float rhs); xml_text& +++operator=+++(bool rhs); -- cgit v1.2.3