summaryrefslogtreecommitdiff
path: root/src/amount.h
diff options
context:
space:
mode:
authorCraig Earls <enderw88@gmail.com>2013-01-30 18:56:00 -0800
committerCraig Earls <enderw88@gmail.com>2013-01-30 18:56:00 -0800
commitd9b1258c3480f79a0413cf4c5d07c6818c140503 (patch)
treec3416c163e9f13b1fdd2a5ccc3400375723e7aac /src/amount.h
parentb21ee1de170f99e8ed5c82546c8ae69e209bd8d6 (diff)
parent0df13661686dfec66aa0d5a8dd88920e1e104fbc (diff)
downloadfork-ledger-d9b1258c3480f79a0413cf4c5d07c6818c140503.tar.gz
fork-ledger-d9b1258c3480f79a0413cf4c5d07c6818c140503.tar.bz2
fork-ledger-d9b1258c3480f79a0413cf4c5d07c6818c140503.zip
Merge pull request #140 from enderw88/Bug634-floor-ceil-round
Bug 634 Added roundto function, optimized floor and ceiling
Diffstat (limited to 'src/amount.h')
-rw-r--r--src/amount.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/amount.h b/src/amount.h
index 1b7d2101..5fc2ad2e 100644
--- a/src/amount.h
+++ b/src/amount.h
@@ -346,6 +346,13 @@ public:
}
void in_place_round();
+ amount_t roundto(int places) const {
+ amount_t temp(*this);
+ temp.in_place_round();
+ return temp;
+ }
+ void in_place_roundto(int places);
+
/** Yields an amount which has lost all of its extra precision, beyond what
the display precision of the commodity would have printed. */
amount_t truncated() const {