/**************************************************************************** ** ** 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 #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