diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 22:38:03 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 22:38:03 +0000 |
commit | dadc34655c3ab961b0b0b94a10eaaba710f0b5e8 (patch) | |
tree | 99e72842fe687baea16376a147619b6048d7e441 /kmymoney2/mymoney/mymoneyobserver.h | |
download | kmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.tar.gz kmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.zip |
Added kmymoney
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmymoney@1239792 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmymoney2/mymoney/mymoneyobserver.h')
-rw-r--r-- | kmymoney2/mymoney/mymoneyobserver.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/kmymoney2/mymoney/mymoneyobserver.h b/kmymoney2/mymoney/mymoneyobserver.h new file mode 100644 index 0000000..3e6c922 --- /dev/null +++ b/kmymoney2/mymoney/mymoneyobserver.h @@ -0,0 +1,55 @@ +/*************************************************************************** + mymoneyobserver.h - description + ------------------- + begin : Sat May 18 2002 + copyright : (C) 2000-2005 by Michael Edwardes + email : mte@users.sourceforge.net + Javier Campos Morales <javi_c@users.sourceforge.net> + Felix Rodriguez <frodriguez@users.sourceforge.net> + John C <thetacoturtle@users.sourceforge.net> + Thomas Baumgart <ipwizard@users.sourceforge.net> + Kevin Tambascio <ktambascio@users.sourceforge.net> + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef MYMONEYOBSERVER_H +#define MYMONEYOBSERVER_H + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +// ---------------------------------------------------------------------------- +// QT Includes + +// ---------------------------------------------------------------------------- +// Project Includes + +#include <kmymoney/export.h> +class MyMoneySubject; +class QString; + +/** + * This is the base class to be used to construct an + * observer for usage in a subject/observer relationship + * + * @author Thomas Baumgart + */ +class KMYMONEY_EXPORT MyMoneyObserver { +public: + virtual ~MyMoneyObserver(); + virtual void update(const QString& id) = 0; + +protected: + MyMoneyObserver(); +}; + +#endif |