diff options
Diffstat (limited to 'kmymoney2/views/kmymoneytransaction.cpp')
-rw-r--r-- | kmymoney2/views/kmymoneytransaction.cpp | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/kmymoney2/views/kmymoneytransaction.cpp b/kmymoney2/views/kmymoneytransaction.cpp new file mode 100644 index 0000000..ee16a6a --- /dev/null +++ b/kmymoney2/views/kmymoneytransaction.cpp @@ -0,0 +1,53 @@ +/*************************************************************************** + kmymoneytransaction.cpp - description + ------------------- + begin : Fri Sep 5 2003 + copyright : (C) 2000-2003 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. * + * * + ***************************************************************************/ + +// ---------------------------------------------------------------------------- +// QT Includes + +// ---------------------------------------------------------------------------- +// KDE Includes + +// ---------------------------------------------------------------------------- +// Project Includes + + +#include "kmymoneytransaction.h" + +KMyMoneyTransaction::KMyMoneyTransaction() +{ +} + +KMyMoneyTransaction::KMyMoneyTransaction(const MyMoneyTransaction& t) : + MyMoneyTransaction(t) +{ +} + +KMyMoneyTransaction::~KMyMoneyTransaction() +{ +} + +void KMyMoneyTransaction::setSplitId(const QString& id) +{ + m_splitId = id; +} + + |