#ifndef INFODIALOG_H
#define INFODIALOG_H

#include "dialogbase.h"
class QTimer;

class InfoDialog : public DialogBase
{
    Q_OBJECT
public:
    InfoDialog( int time = 0 );
    static DialogBase *createWidget( const QString &text, const QString &timeout );
private:
    QTimer *m_timeout;
};

#endif // INFODIALOG_H

