#ifndef YESNODIALOG_H
#define YESNODIALOG_H

#include "dialogbase.h"

class YesNoDialog : public DialogBase
{
    Q_OBJECT
public:
    YesNoDialog( );
    static DialogBase *createWidget( const QString &text );
};

#endif // YESNODIALOG_H

