summaryrefslogtreecommitdiff
path: root/noncore/tools/calc2/simple/simplefactory.h
Unidiff
Diffstat (limited to 'noncore/tools/calc2/simple/simplefactory.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/calc2/simple/simplefactory.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/noncore/tools/calc2/simple/simplefactory.h b/noncore/tools/calc2/simple/simplefactory.h
new file mode 100644
index 0000000..e1022fd
--- a/dev/null
+++ b/noncore/tools/calc2/simple/simplefactory.h
@@ -0,0 +1,46 @@
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 BINARYIMPL_H
22#define BINARYIMPL_H
23
24#include "simpleimpl.h"
25#include <plugininterface.h>
26#include <engine.h>
27
28class SimpleInterface : public CalcInterface
29{
30public:
31 SimpleInterface(){input = 0;};
32 virtual ~SimpleInterface(){};
33
34#ifndef QT_NO_COMPONENT
35 QRESULT queryInterface( const QUuid&, QUnknownInterface** );
36 Q_REFCOUNT
37#endif
38
39 QWidget *getPlugin( Engine *, QWidget *parent );
40
41private:
42 FormSimpleImpl *input;
43 ulong ref;
44};
45
46#endif