docs: update docs to add set with precision
This commit is contained in:
parent
adc65a7f21
commit
d3fe92464c
@ -1287,7 +1287,9 @@ bool xml_attribute::set_value(unsigned int rhs);
|
|||||||
bool xml_attribute::set_value(long rhs);
|
bool xml_attribute::set_value(long rhs);
|
||||||
bool xml_attribute::set_value(unsigned long rhs);
|
bool xml_attribute::set_value(unsigned long rhs);
|
||||||
bool xml_attribute::set_value(double rhs);
|
bool xml_attribute::set_value(double rhs);
|
||||||
|
bool xml_attribute::set_value(double rhs, int precision);
|
||||||
bool xml_attribute::set_value(float rhs);
|
bool xml_attribute::set_value(float rhs);
|
||||||
|
bool xml_attribute::set_value(float rhs, int precision);
|
||||||
bool xml_attribute::set_value(bool rhs);
|
bool xml_attribute::set_value(bool rhs);
|
||||||
bool xml_attribute::set_value(long long rhs);
|
bool xml_attribute::set_value(long long rhs);
|
||||||
bool xml_attribute::set_value(unsigned long long rhs);
|
bool xml_attribute::set_value(unsigned long long rhs);
|
||||||
@ -1439,7 +1441,9 @@ bool xml_text::set(unsigned int rhs);
|
|||||||
bool xml_text::set(long rhs);
|
bool xml_text::set(long rhs);
|
||||||
bool xml_text::set(unsigned long rhs);
|
bool xml_text::set(unsigned long rhs);
|
||||||
bool xml_text::set(double rhs);
|
bool xml_text::set(double rhs);
|
||||||
|
bool xml_text::set(double rhs, int precision);
|
||||||
bool xml_text::set(float rhs);
|
bool xml_text::set(float rhs);
|
||||||
|
bool xml_text::set(float rhs, int precision);
|
||||||
bool xml_text::set(bool rhs);
|
bool xml_text::set(bool rhs);
|
||||||
bool xml_text::set(long long rhs);
|
bool xml_text::set(long long rhs);
|
||||||
bool xml_text::set(unsigned long long rhs);
|
bool xml_text::set(unsigned long long rhs);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user