From d3fe92464cb7bf2d9d15381d58e1c2ed0558268d Mon Sep 17 00:00:00 2001 From: Tuan Anh Tran Date: Sun, 22 Sep 2019 00:05:51 +0700 Subject: [PATCH] docs: update docs to add set with precision --- docs/manual.adoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/manual.adoc b/docs/manual.adoc index 5a391ed..25a4db9 100644 --- a/docs/manual.adoc +++ b/docs/manual.adoc @@ -1287,7 +1287,9 @@ 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(double rhs, int precision); 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(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(unsigned long 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, int precision); bool xml_text::set(bool rhs); bool xml_text::set(long long rhs); bool xml_text::set(unsigned long long rhs);