Package org.eclipse.cdt.internal.core.dom.parser.cpp

Examples of org.eclipse.cdt.internal.core.dom.parser.cpp.CPPMethod


@SuppressWarnings("restriction")
class MethodMappingStrategy implements IBindingMappingStrategy<CPPMethod> {
  @Inject private IBindings bindings;

  @Override public CppToProtobufMapping createMappingFrom(IBinding binding) {
    CPPMethod method = typeOfSupportedBinding().cast(binding);
    ICPPFunctionType type = method.getType();
    if (!type.isConst()) {
      return null;
    }
    IType[] types = type.getParameterTypes();
    if (types != null && types.length > 0) {
View Full Code Here

TOP

Related Classes of org.eclipse.cdt.internal.core.dom.parser.cpp.CPPMethod

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.