blob: e21ccd1cf58ca9bd8c53a36c0e01f166d520b92e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2020 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.qvtd.xtext.qvtbase.cs2as;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.xtext.base.cs2as.CS2ASConversion;
import org.eclipse.qvtd.xtext.qvtbasecs.util.AbstractQVTbaseCSPreOrderVisitor;
public class QVTbaseCSPreOrderVisitor extends AbstractQVTbaseCSPreOrderVisitor
{
public QVTbaseCSPreOrderVisitor(@NonNull CS2ASConversion context) {
super(context);
}
}