blob: 77aca201956302fbf4b9a574c3c7d2a6526769a6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2012 Red Hat, Inc.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Red Hat Incorporated - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.autotools.ui.editors.parser;
public class AutoconfCaseConditionElement extends AutoconfElement {
public AutoconfCaseConditionElement() {
super(""); //$NON-NLS-1$
}
public AutoconfCaseConditionElement(String name) {
super(name);
}
}