Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/INamespace.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/INamespace.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/INamespace.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/INamespace.java
deleted file mode 100644
index 91f4240f3d2..00000000000
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/INamespace.java
+++ /dev/null
@@ -1,22 +0,0 @@
-/**********************************************************************
-Copyright (c) 2002, 2004 IBM Rational Software 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 Rational Software - Initial API and implementation
-**********************************************************************/
-package org.eclipse.cdt.core.model;
-
-/**
- * Represents a package declaration in a C translation unit.
- */
-public interface INamespace extends ICElement, IParent, ISourceManipulation, ISourceReference {
- /**
- * Returns the typename of a namespace.
- * @return String
- */
- String getTypeName();
-}

Back to the top