1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /**
- * Copyright (c) 2012 committers of YAKINDU and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- * Contributors:
- * m.muehlbrandt - initial API and implementation
- *
- */
- #include "org_yakindu_sct_examples_c_trafficlight.h"
- #include <QtGui>
- #include <QApplication>
- #include "src-gen/sc_types.h"
- #include "src-gen/TrafficLightWaiting.h"
- #include "statemachine/TrafficLightTimer.h"
- #include "statemachine/TrafficLightRunner.h"
- TrafficLightTimer *timer;
- int main(int argc, char *argv[]) {
- TrafficLightWaiting handle;
- trafficLightWaiting_init(&handle);
- timer = new TrafficLightTimer(&handle);
- trafficLightWaiting_enter(&handle);
- QApplication a(argc, argv);
- TrafficLightRunner *runner = new TrafficLightRunner(&handle, 100);
- org_yakindu_sct_examples_c_trafficlight w(0, runner);
- w.show();
- int ret = a.exec();
- return ret;
- }
- void trafficLightWaiting_setTimer(const sc_eventid evid,
- const sc_integer time_ms, const sc_boolean periodic) {
- timer->setTimer(evid, time_ms, periodic);
- }
- void trafficLightWaiting_unsetTimer(const sc_eventid evid) {
- timer->unsetTimer(evid);
- }
|