mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 18:26:01 +02:00
Fix from Hoda
IStructure extends IVariableDeclaration INamespace extends IParent.
This commit is contained in:
parent
13a2fc941c
commit
acfaf07e1a
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ package org.eclipse.cdt.core.model;
|
|||
/**
|
||||
* Represents a package declaration in a C translation unit.
|
||||
*/
|
||||
public interface INamespace extends ICElement, ISourceManipulation, ISourceReference {
|
||||
public interface INamespace extends ICElement, IParent, ISourceManipulation, ISourceReference {
|
||||
/**
|
||||
* Returns the name of the package the statement refers to.
|
||||
* This is a handle-only method.
|
||||
|
|
|
@ -8,7 +8,7 @@ package org.eclipse.cdt.core.model;
|
|||
/**
|
||||
* Represent struct(ure), class or union.
|
||||
*/
|
||||
public interface IStructure extends IInheritance, IParent, IDeclaration {
|
||||
public interface IStructure extends IInheritance, IParent, IVariableDeclaration {
|
||||
//public String instantiatesTemplate();
|
||||
|
||||
public IField getField(String name);
|
||||
|
|
Loading…
Add table
Reference in a new issue