Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 66b033e39e9848752543a38c4492f7b11cc3980a (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                
                                                       

                                                                        
                                                           


                                            
                                          
                                                                                 

                                                     


                                                              

   
                                        
   
                                                                                      

                                                                       
 
/*******************************************************************************
 * Copyright (c) 2005, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    IBM - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.internal.core.dom.parser.cpp;

import org.eclipse.cdt.core.dom.ast.IBinding;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPTemplateParameter;


/**
 * Interface for templates from the ast.
 */
public interface ICPPInternalTemplate extends ICPPInternalBinding, ICPPInstanceCache {

	IBinding resolveTemplateParameter(ICPPTemplateParameter param);
}

Back to the top