00001 /*************************************************************************** 00002 kloadtemplatedlg.h 00003 ------------------- 00004 copyright : (C) 2008 by Thomas Baumgart 00005 email : ipwizard@users.sourceforge.net 00006 ***************************************************************************/ 00007 00008 /*************************************************************************** 00009 * * 00010 * This program is free software; you can redistribute it and/or modify * 00011 * it under the terms of the GNU General Public License as published by * 00012 * the Free Software Foundation; either version 2 of the License, or * 00013 * (at your option) any later version. * 00014 * * 00015 ***************************************************************************/ 00016 00017 #ifndef KLOADTEMPLATEDLG_H 00018 #define KLOADTEMPLATEDLG_H 00019 00020 // ---------------------------------------------------------------------------- 00021 // QT Includes 00022 00023 // ---------------------------------------------------------------------------- 00024 // KDE Includes 00025 00026 // ---------------------------------------------------------------------------- 00027 // Project Includes 00028 00029 #include <kmymoney/mymoneytemplate.h> 00030 #include "../dialogs/kloadtemplatedlgdecl.h" 00031 00033 class KLoadTemplateDlg : public KLoadTemplateDlgDecl 00034 { 00035 Q_OBJECT 00036 00037 public: 00038 KLoadTemplateDlg(QWidget *parent = 0, const char *name = 0); 00039 00040 QValueList<MyMoneyTemplate> templates(void) const; 00041 00042 private slots: 00043 void slotHelp(void); 00044 }; 00045 00046 #endif
1.5.6