Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e67d4af4f7782a5973a3774ccae9bbbd1f3cdba8 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*******************************************************************************
 * Copyright (c) 2007, 2010 Symbian 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:
 *    Andrew Ferguson (Symbian) - Initial implementation
 *******************************************************************************/
package org.eclipse.cdt.internal.core.index.composite.cpp;

import org.eclipse.cdt.core.dom.ast.cpp.ICPPClassType;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPFunction;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPMethod;
import org.eclipse.cdt.internal.core.index.IIndexFragmentBinding;
import org.eclipse.cdt.internal.core.index.composite.ICompositesFactory;

public class CompositeCPPMethodTemplateSpecialization
	extends CompositeCPPFunctionTemplateSpecialization
	implements ICPPMethod {

	public CompositeCPPMethodTemplateSpecialization(ICompositesFactory cf,
			ICPPFunction ft) {
		super(cf, ft);
	}
	
	@Override
	public boolean isDestructor() {
		return ((ICPPMethod)rbinding).isDestructor();
	}

	@Override
	public boolean isImplicit() {
		return ((ICPPMethod)rbinding).isImplicit();
	}

	@Override
	public boolean isExplicit() {
		return ((ICPPMethod)rbinding).isExplicit();
	}

	@Override
	public boolean isVirtual() {
		return ((ICPPMethod)rbinding).isVirtual();
	}

	@Override
	public ICPPClassType getClassOwner() {
		IIndexFragmentBinding rowner = (IIndexFragmentBinding) ((ICPPMethod)rbinding).getClassOwner();
		return (ICPPClassType) cf.getCompositeBinding(rowner);
	}

	@Override
	public int getVisibility() {
		return ((ICPPMethod)rbinding).getVisibility();
	}

	@Override
	public boolean isPureVirtual() {
		return ((ICPPMethod)rbinding).isPureVirtual();
	}
}

Back to the top