mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
ICPPAliasTemplate and ICPPAliasTemplateInstance are not supposed to be
extended or implemented by clients.
This commit is contained in:
parent
a38c6c6d86
commit
5ba7b39f01
2 changed files with 8 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2012 Institute for Software, HSR Hochschule fuer Technik
|
||||
* Copyright (c) 2012, 2014 Institute for Software, HSR Hochschule fuer Technik
|
||||
* Rapperswil, University of applied sciences.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
|
@ -16,6 +16,9 @@ import org.eclipse.cdt.core.dom.ast.IType;
|
|||
/**
|
||||
* Represents an alias template (14.5.7).
|
||||
* @since 5.5
|
||||
*
|
||||
* @noextend This interface is not intended to be extended by clients.
|
||||
* @noimplement This interface is not intended to be implemented by clients.
|
||||
*/
|
||||
public interface ICPPAliasTemplate extends IType, ICPPTemplateDefinition {
|
||||
/**
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2012 Institute for Software, HSR Hochschule fuer Technik
|
||||
* Copyright (c) 2012, 2014 Institute for Software, HSR Hochschule fuer Technik
|
||||
* Rapperswil, University of applied sciences.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
|
@ -16,6 +16,9 @@ import org.eclipse.cdt.core.dom.ast.ITypedef;
|
|||
/**
|
||||
* Represents an instance of an alias template (14.5.7).
|
||||
* @since 5.5
|
||||
*
|
||||
* @noextend This interface is not intended to be extended by clients.
|
||||
* @noimplement This interface is not intended to be implemented by clients.
|
||||
*/
|
||||
public interface ICPPAliasTemplateInstance extends ITypedef, ICPPBinding {
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue