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/format.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/format.h')
-rw-r--r-- | src/format.h | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/src/format.h b/src/format.h index 19b19eea..439cb70b 100644 --- a/src/format.h +++ b/src/format.h @@ -29,6 +29,20 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * @addtogroup expr + */ + +/** + * @file format.h + * @author John Wiegley + * + * @ingroup expr + * + * @brief Brief + * + * Long. + */ #ifndef _FORMAT_H #define _FORMAT_H @@ -45,6 +59,7 @@ namespace ledger { DECLARE_EXCEPTION(format_error, std::runtime_error); #if defined(SUPPORT_UNICODE) + /** * @class unistring * @@ -87,10 +102,16 @@ public: return utf8result; } }; -#endif + +#endif // SUPPORT_UNICODE class report_t; +/** + * @brief Brief + * + * Long. + */ class format_t : public noncopyable { struct element_t : public supports_flags<>, public noncopyable |