blob: 98d6587b8bd8602f21c884b2fa86a49d06736633 [file] [log] [blame]
package org.eclipse.cdt.core.dom;
import java.util.List;
import org.eclipse.cdt.internal.core.dom.Declaration;
/**
* A scope contains a set of declarations that are defined in that scope.
*/
public interface IScope {
public void addDeclaration(Declaration declaration);
public List getDeclarations();
}