You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
312 B
23 lines
312 B
|
|
#ifndef CSCI_SIMULATION_SERVICE_H
|
|
#define CSCI_SIMULATION_SERVICE_H
|
|
|
|
#include <QObject>
|
|
#include "../include/code/err_code.h"
|
|
|
|
enum SimulationCommand { START, STOP , PAUSE, RESUME, EXPEDITE, RETARD };
|
|
|
|
class SimulationService : public QObject{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
#endif //CSCI_SIMULATION_SERVICE_H
|