blob: 4270d71fbfe2b92dff9bfd0993074faa47981d88 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2017 Timing-Architects Embedded Systems GmbH 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:
* Timing-Architects Embedded Systems GmbH - initial API and implementation
*
* *******************************************************************************
*/
package org.eclipse.app4mc.amalthea.generator;
import org.eclipse.app4mc.amalthea.generator.configuration.RTMGC;
import org.eclipse.core.runtime.IProgressMonitor;
public class ModelGenerator {
public void run(RTMGC rtmgc, IProgressMonitor monitor) throws Exception {
monitor.subTask("Generate Models");
monitor.done();
}
}