Skip to main content
summaryrefslogblamecommitdiffstats
blob: 189ae6b3ef2086a1ea773f3729e6cee18a5a6ad5 (plain) (tree)





















                                                                                 
/*******************************************************************************
 * Copyright (c) 2012 Google, Inc 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:
 * 	   Sergey Prigogin (Google) - 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 ICPPTemplateParameterOwner {

	IBinding resolveTemplateParameter(ICPPTemplateParameter param);
}

Back to the top