Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 789c408f534fa6849a0780c06b1ab9dae41c2293 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*******************************************************************************
 * Copyright (c) 2005 IBM Corporation 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:
 * IBM Rational Software - Initial API and implementation */
 *******************************************************************************/
package org.eclipse.cdt.core.dom.ast;

/**
 * This node represents a null statement. ';'
 * 
 * @author jcamelon
 */
public interface IASTNullStatement extends IASTStatement {

}

Back to the top