summaryrefslogtreecommitdiff
path: root/noncore/tools/calc2/plugininterface.h
Unidiff
Diffstat (limited to 'noncore/tools/calc2/plugininterface.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/calc2/plugininterface.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/noncore/tools/calc2/plugininterface.h b/noncore/tools/calc2/plugininterface.h
new file mode 100644
index 0000000..df6db9d
--- a/dev/null
+++ b/noncore/tools/calc2/plugininterface.h
@@ -0,0 +1,45 @@
1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3**
4** This file is part of Qtopia Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20
21#ifndef CALCINTERFACE_H
22#define CALCINTERFACE_H
23
24#include <qnamespace.h>
25#include <qstring.h>
26#include <qlcdnumber.h>
27#include <qpe/qcom.h>
28
29#include "engine.h"
30
31#ifndef QT_NO_COMPONENT
32// {3CE88B66-B3FD-4580-9D04-77338A31A667}
33#ifndef IID_Calc
34#define IID_Calc QUuid( 0x3ce88b66, 0xb3fd, 0x4580, 0x9d, 0x04, 0x77, 0x33, 0x8a, 0x31, 0xa6, 0x67)
35#endif
36#endif
37
38class QWidget;
39class QObject;
40
41struct CalcInterface:public QUnknownInterface {
42 virtual QWidget *getPlugin (Engine *e, QWidget * parent) = 0;
43};
44
45#endif