diff options
author | John Wiegley <johnw@newartisans.com> | 2008-08-17 03:51:28 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-08-17 03:51:28 -0400 |
commit | 1c079630cf21c2e257e272897a987c0968571865 (patch) | |
tree | 947b04364e9fb38ab63bbdda72d7f85a52da55e7 /src/amount.h | |
parent | 8da86ae078c58390f581ae336a3801fcf8b89d77 (diff) | |
download | fork-ledger-1c079630cf21c2e257e272897a987c0968571865.tar.gz fork-ledger-1c079630cf21c2e257e272897a987c0968571865.tar.bz2 fork-ledger-1c079630cf21c2e257e272897a987c0968571865.zip |
Removed more "pending" type comments.
Diffstat (limited to 'src/amount.h')
-rw-r--r-- | src/amount.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/amount.h b/src/amount.h index 29634fa6..0c849017 100644 --- a/src/amount.h +++ b/src/amount.h @@ -59,7 +59,6 @@ namespace ledger { class commodity_t; class annotation_t; class commodity_pool_t; -class session_t; DECLARE_EXCEPTION(amount_error, std::runtime_error); @@ -87,6 +86,7 @@ class amount_t > #endif { +public: /** * The initialize and shutdown methods ready the amount subsystem * for use. Normally they are called by `ledger::initialize' and @@ -95,9 +95,9 @@ class amount_t static void initialize(); static void shutdown(); - friend class session_t; - -public: + /** + * The amount's decimal precision. + */ typedef uint_least16_t precision_t; /** |