Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c6017e6a0f4cce2e1f445d60750e4699ef90840e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*******************************************************************************
 * Copyright (c) 2007, 2009 QNX Software Systems 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:
 *     QNX - Initial API and implementation
 *     Markus Schorn (Wind River Systems)
 *******************************************************************************/
package org.eclipse.cdt.internal.core.dom.parser.cpp;

import org.eclipse.cdt.core.dom.ast.cpp.ICPPClassTemplate;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPTemplateInstance;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPTemplateParameterMap;

/**
 * Interface for deferred class template instances. 
 */
public interface ICPPDeferredClassInstance extends ICPPUnknownClassType, ICPPTemplateInstance {
	/**
	 * Returns the class template for the deferred instantiation.
	 */
	ICPPClassTemplate getClassTemplate();
	
	/**
	 * Returns the mapping of the template parameters of the primary class template to the
	 * arguments of this instance.
	 * @since 5.1
	 */
	@Override
	public ICPPTemplateParameterMap getTemplateParameterMap();
}

Back to the top