1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

It should be an IDirective.

This commit is contained in:
Alain Magloire 2004-03-04 04:39:54 +00:00
parent 0c59594c73
commit df6bb6a3af

View file

@ -10,9 +10,12 @@
***********************************************************************/ ***********************************************************************/
package org.eclipse.cdt.make.core.makefile.gnu; package org.eclipse.cdt.make.core.makefile.gnu;
import org.eclipse.cdt.make.core.makefile.IDirective;
/** /**
*/ */
public interface IUnExport { public interface IUnExport extends IDirective {
String getVariable(); String getVariable();
} }