00001 /*************************************************************************** 00002 mymoneyobserver.h - description 00003 ------------------- 00004 begin : Sat May 18 2002 00005 copyright : (C) 2000-2005 by Michael Edwardes 00006 email : mte@users.sourceforge.net 00007 Javier Campos Morales <javi_c@users.sourceforge.net> 00008 Felix Rodriguez <frodriguez@users.sourceforge.net> 00009 John C <thetacoturtle@users.sourceforge.net> 00010 Thomas Baumgart <ipwizard@users.sourceforge.net> 00011 Kevin Tambascio <ktambascio@users.sourceforge.net> 00012 ***************************************************************************/ 00013 00014 /*************************************************************************** 00015 * * 00016 * This program is free software; you can redistribute it and/or modify * 00017 * it under the terms of the GNU General Public License as published by * 00018 * the Free Software Foundation; either version 2 of the License, or * 00019 * (at your option) any later version. * 00020 * * 00021 ***************************************************************************/ 00022 00023 #ifndef MYMONEYOBSERVER_H 00024 #define MYMONEYOBSERVER_H 00025 00026 #ifdef HAVE_CONFIG_H 00027 #include <config.h> 00028 #endif 00029 00030 // ---------------------------------------------------------------------------- 00031 // QT Includes 00032 00033 // ---------------------------------------------------------------------------- 00034 // Project Includes 00035 00036 #include <kmymoney/export.h> 00037 class MyMoneySubject; 00038 class QString; 00039 00046 class KMYMONEY_EXPORT MyMoneyObserver { 00047 public: 00048 virtual ~MyMoneyObserver(); 00049 virtual void update(const QString& id) = 0; 00050 00051 protected: 00052 MyMoneyObserver(); 00053 }; 00054 00055 #endif
1.5.6