1 /*
2  * Copyright 2016-2018  Thomas Baumgart <tbaumgart@kde.org>
3  * Copyright 2017-2018  Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of
8  * the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 #include "ledgeritem.h"
20 
21 // ----------------------------------------------------------------------------
22 // QT Includes
23 
24 #include <QString>
25 
26 // ----------------------------------------------------------------------------
27 // KDE Includes
28 
29 // ----------------------------------------------------------------------------
30 // Project Includes
31 
LedgerItem()32 LedgerItem::LedgerItem()
33 {
34 }
35 
~LedgerItem()36 LedgerItem::~LedgerItem()
37 {
38 }
39 
accountId() const40 QString LedgerItem::accountId() const
41 {
42   return QString();
43 }
44