00001 /*************************************************************************** 00002 kbalancechartdlg - description 00003 ------------------- 00004 begin : Mon Nov 26 2007 00005 copyright : (C) 2007 by Thomas Baumgart 00006 email : Thomas Baumgart <ipwizard@users.sourceforge.net> 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef KBALANCECHARTDLG_H 00019 #define KBALANCECHARTDLG_H 00020 00021 // ---------------------------------------------------------------------------- 00022 // QT Includes 00023 00024 // ---------------------------------------------------------------------------- 00025 // KDE Includes 00026 00027 #include <kdialog.h> 00028 00029 // ---------------------------------------------------------------------------- 00030 // Project Includes 00031 00032 class MyMoneyAccount; 00033 00037 class KBalanceChartDlg : public KDialog 00038 { 00039 Q_OBJECT 00040 public: 00041 KBalanceChartDlg(const MyMoneyAccount& account, QWidget* parent = 0, const char* name = 0); 00042 ~KBalanceChartDlg(); 00043 00044 }; 00045 00046 #endif
1.4.1