|
|
|
@ -14,6 +14,7 @@
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <iostream>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
|
|
#include "Controller.h"
|
|
|
|
#include "Controller.h"
|
|
|
|
@ -24,6 +25,8 @@ int main()
|
|
|
|
if (controller.Start())
|
|
|
|
if (controller.Start())
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pause();
|
|
|
|
|
|
|
|
|
|
|
|
controller.Stop();
|
|
|
|
controller.Stop();
|
|
|
|
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|