summaryrefslogtreecommitdiffstats
path: root/examples/calc/calc.h
blob: 4d7c18e80a1f38a58adfde1afd18c88aa9cb8b36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/****************************************************************************
**
** Copyright (C) 2008-$THISYEAR$ $TROLLTECH$. All rights reserved.
**
** This file is part of the SCXML project on Trolltech Labs.
**
** $TROLLTECH_GPL_LICENSE$
**
****************************************************************************/
#ifndef CALC_H
#define CALC_H

#include <QtGui/QWidget>
#include "ui_calc.h"

class CalcWidget : public QWidget, public Ui::CalcClass
{
    Q_OBJECT

public:
    CalcWidget(QWidget *parent = 0);
    ~CalcWidget();

Q_SIGNALS:
    void command(const QString &);
};

#endif // CALC_H