00001 /*************************************************************************** 00002 userinfo.h 00003 ------------------- 00004 begin : Fri Jun 1 2007 00005 copyright : (C) 2007 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 USERINFO_H 00019 #define USERINFO_H 00020 00021 // ---------------------------------------------------------------------------- 00022 // QT Includes 00023 00024 // ---------------------------------------------------------------------------- 00025 // Project Includes 00026 00027 #include "userinfodecl.h" 00028 class MyMoneyPayee; 00029 00033 class UserInfo : public UserInfoDecl 00034 { 00035 Q_OBJECT 00036 public: 00037 UserInfo(QWidget* parent = 0, const char* name = 0); 00038 MyMoneyPayee user(void) const; 00039 00040 private: 00041 }; 00042 00043 00044 #endif
1.4.1