diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-31 15:28:23 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-31 15:28:23 -0400 |
commit | 1ece3f8b1ce67197844084009fd0ac022b266450 (patch) | |
tree | 6b54f87df9003021188e28837aae712743a14d5a /src/output.h | |
parent | d1d5fc75511aeae760b43bd40aa7abfdbb7e6fa3 (diff) | |
download | fork-ledger-1ece3f8b1ce67197844084009fd0ac022b266450.tar.gz fork-ledger-1ece3f8b1ce67197844084009fd0ac022b266450.tar.bz2 fork-ledger-1ece3f8b1ce67197844084009fd0ac022b266450.zip |
Added documentation stubs for all include files and classes.
Diffstat (limited to 'src/output.h')
-rw-r--r-- | src/output.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/output.h b/src/output.h index 0d4e2072..af8e9e82 100644 --- a/src/output.h +++ b/src/output.h @@ -29,6 +29,20 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * @addtogroup report + */ + +/** + * @file output.h + * @author John Wiegley + * + * @ingroup report + * + * @brief Brief + * + * Long. + */ #ifndef _OUTPUT_H #define _OUTPUT_H @@ -38,6 +52,11 @@ namespace ledger { +/** + * @brief Brief + * + * Long. + */ class format_xacts : public item_handler<xact_t> { protected: @@ -60,6 +79,11 @@ public: virtual void operator()(xact_t& xact); }; +/** + * @brief Brief + * + * Long. + */ class format_entries : public format_xacts { public: @@ -88,6 +112,11 @@ private: const string& prefix = ""); }; +/** + * @brief Brief + * + * Long. + */ class format_accounts : public item_handler<account_t> { protected: @@ -122,6 +151,11 @@ public: virtual void operator()(account_t& account); }; +/** + * @brief Brief + * + * Long. + */ class format_equity : public format_accounts { format_t first_line_format; |