Skip to main content
summaryrefslogblamecommitdiffstats
blob: b0d4a19d5a5e3d65d3d4da0f2e0a878207d73d09 (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                                                                                

                                                                    


                                                                                 
                                                             
 
   

                                                                                                     

                                        
   
                                                                                


                                                     
                                                     
 
/*******************************************************************************
 * Copyright (c) 2008 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
 *     Markus Schorn (Wind River Systems)
 *******************************************************************************/
package org.eclipse.cdt.internal.core.dom.parser.cpp;

import org.eclipse.cdt.core.dom.ast.cpp.ICPPTemplateArgument;

/**
 * Represents a partially instantiated C++ class template, declaration of which is not yet available.
 *
 * This interface should be made public.
 * @since 5.0
 */
public interface ICPPUnknownMemberClassInstance extends ICPPUnknownMemberClass {
	/**
	 * Returns the arguments of the instantiation
	 */
	public ICPPTemplateArgument[] getArguments();
}

Back to the top