Improved Postscript output handling.
[account.git] / account.h
index 997a912..133c82a 100644 (file)
--- a/account.h
+++ b/account.h
@@ -299,6 +299,8 @@ public:
 
 class Ledger
 {
+   String  companyname;
+
    Account accs[200];
    int     nr_accs;
    int     idx;
@@ -342,7 +344,7 @@ public:
    friend std::ostream & operator<<(std::ostream &, Ledger&);
 
    void accounts_report(const char *);
-   void saldi_report(const char *);
-   void XML_saldi(std::ostream &);
+   void saldi_report(const char *, date period_begin, date period_end);
+   void XML_saldi(std::ostream &, date period_begin, date period_end);
 };