diff options
Diffstat (limited to 'kmymoney2/mymoney/storage/mymoneystoragedump.h')
-rw-r--r-- | kmymoney2/mymoney/storage/mymoneystoragedump.h | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/kmymoney2/mymoney/storage/mymoneystoragedump.h b/kmymoney2/mymoney/storage/mymoneystoragedump.h new file mode 100644 index 0000000..e399cde --- /dev/null +++ b/kmymoney2/mymoney/storage/mymoneystoragedump.h @@ -0,0 +1,56 @@ +/*************************************************************************** + mymoneystoragedump.h - description + ------------------- + begin : Sun May 5 2002 + copyright : (C) 2000-2002 by Michael Edwardes + email : [email protected] + Javier Campos Morales <[email protected]> + Felix Rodriguez <[email protected]> + John C <[email protected]> + Thomas Baumgart <[email protected]> + Kevin Tambascio <[email protected]> + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef MYMONEYSTORAGEDUMP_H +#define MYMONEYSTORAGEDUMP_H + +// ---------------------------------------------------------------------------- +// QT Includes + +#include <qdatastream.h> + +// ---------------------------------------------------------------------------- +// Project Includes + +#include "imymoneyserialize.h" +#include "../mymoneysecurity.h" + +/** + * @author Thomas Baumgart + */ + +class MyMoneyStorageDump +{ +public: + MyMoneyStorageDump(); + ~MyMoneyStorageDump(); + + void readStream(QDataStream& s, IMyMoneySerialize* storage); + void writeStream(QDataStream& s, IMyMoneySerialize* storage); + +private: + void dumpTransaction(QTextStream& s, IMyMoneyStorage* storage, const MyMoneyTransaction& it_t); + void dumpKVP(const QString& headline, QTextStream& s, const MyMoneyKeyValueContainer &kvp, int indent = 0); + const QString reconcileToString(MyMoneySplit::reconcileFlagE flag) const; +}; + +#endif |