summaryrefslogtreecommitdiff
path: root/examples/todayplugin/examplepluginimpl.h
authorharlekin <harlekin>2004-02-03 22:25:41 (UTC)
committer harlekin <harlekin>2004-02-03 22:25:41 (UTC)
commit8a796b594669c54a34b2e416ff0d931aaa3cc76d (patch) (unidiff)
tree9e8465a881932a2c3da9ca9018bb2fcbc346b163 /examples/todayplugin/examplepluginimpl.h
parentca3580f98de6e68cc595234859691df997b60a98 (diff)
downloadopie-8a796b594669c54a34b2e416ff0d931aaa3cc76d.zip
opie-8a796b594669c54a34b2e416ff0d931aaa3cc76d.tar.gz
opie-8a796b594669c54a34b2e416ff0d931aaa3cc76d.tar.bz2
today example plugin
Diffstat (limited to 'examples/todayplugin/examplepluginimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--examples/todayplugin/examplepluginimpl.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/examples/todayplugin/examplepluginimpl.h b/examples/todayplugin/examplepluginimpl.h
new file mode 100644
index 0000000..2c10583
--- a/dev/null
+++ b/examples/todayplugin/examplepluginimpl.h
@@ -0,0 +1,40 @@
1/*
2 * examplepluginimpl.h
3 *
4 * copyright : (c) 2004 by Maximilian Reiß
5 * email : harlekin@handhelds.org
6 *
7 */
8/***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
17#ifndef EXAMPLE_PLUGIN_IMPL_H
18#define EXAMPLE_PLUGIN_IMPL_H
19
20#include <opie/todayplugininterface.h>
21
22class ExamplePlugin;
23
24class ExamplePluginImpl : public TodayPluginInterface{
25
26public:
27 ExamplePluginImpl();
28 virtual ~ExamplePluginImpl();
29
30 QRESULT queryInterface( const QUuid &, QUnknownInterface** );
31 Q_REFCOUNT
32
33 virtual TodayPluginObject *guiPart();
34
35private:
36 ExamplePlugin *examplePlugin;
37 ulong ref;
38};
39
40#endif