From 495d10915b8febac355ff90933b07484656b0bff Mon Sep 17 00:00:00 2001 From: Andrew Niefer Date: Wed, 15 Dec 2004 17:57:28 +0000 Subject: [PATCH] This someone got left out of the last commit --- .../core/dom/parser/ITypeContainer.java | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ITypeContainer.java diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ITypeContainer.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ITypeContainer.java new file mode 100644 index 00000000000..a0849f2d3f7 --- /dev/null +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ITypeContainer.java @@ -0,0 +1,24 @@ +/******************************************************************************* + * Copyright (c) 2004 IBM Corporation and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Common Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/cpl-v10.html + * + * Contributors: + * IBM Corporation - initial API and implementation + *******************************************************************************/ + +/* + * Created on Dec 13, 2004 + */ +package org.eclipse.cdt.internal.core.dom.parser; + +import org.eclipse.cdt.core.dom.ast.IType; + +/** + * @author aniefer + */ +public interface ITypeContainer extends IType{ + IType getType(); +}