Blame | Last modification | View Log | Download | RSS feed
#ifndef SIMCONTROLLER_H#define SIMCONTROLLER_H#include "GlobalDefines.h"class SimController : public QWidget{Q_OBJECTpublic:SimController(QWidget *parent = 0);signals:void singleStep(void);void autoStep(void);public slots:private:QPushButton *singleStepBtn;QPushButton *autoStepBtn;};#endif // SIMCONTROLLER_H