1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 23:05:47 +02:00

Remove unused interfaces.

This commit is contained in:
John Camelon 2005-03-08 20:32:44 +00:00
parent 3601a6622d
commit 1221d7fad0
2 changed files with 0 additions and 43 deletions

View file

@ -1,21 +0,0 @@
/**********************************************************************
* 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 - Initial API and implementation
**********************************************************************/
package org.eclipse.cdt.core.dom.ast;
import org.eclipse.core.resources.IResource;
/**
* @author jcamelon
*/
public interface IASTResourceLocation extends IASTFileLocation {
public IResource getResource();
}

View file

@ -1,22 +0,0 @@
/**********************************************************************
* 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 - Initial API and implementation
**********************************************************************/
package org.eclipse.cdt.core.dom.ast;
import org.eclipse.cdt.core.model.IWorkingCopy;
/**
* @author jcamelon
*/
public interface IASTWorkingCopyLocation extends IASTResourceLocation {
public IWorkingCopy getWorkingCopy();
}