summaryrefslogtreecommitdiff
path: root/core/pim/osearch/eventitem.h
Unidiff
Diffstat (limited to 'core/pim/osearch/eventitem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/eventitem.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/core/pim/osearch/eventitem.h b/core/pim/osearch/eventitem.h
new file mode 100644
index 0000000..c3483de
--- a/dev/null
+++ b/core/pim/osearch/eventitem.h
@@ -0,0 +1,38 @@
1//
2//
3// C++ Interface: $MODULE$
4//
5// Description:
6//
7//
8// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
9//
10// Copyright: See COPYING file that comes with this distribution
11//
12//
13#ifndef EVENTITEM_H
14#define EVENTITEM_H
15
16#include "resultitem.h"
17
18class OEvent;
19
20/**
21@author Patrick S. Vogt
22*/
23class EventItem : public ResultItem
24{
25public:
26 EventItem(OListViewItem* parent, OEvent *event);
27
28 ~EventItem();
29
30 virtual QString toRichText();
31 virtual void editItem();
32
33private:
34 OEvent *_event;
35
36};
37
38#endif