Examples of CPPTypedef


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

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

  @Override public CppToProtobufMapping createMappingFrom(IBinding binding) {
    CPPTypedef typeDef = typeOfSupportedBinding().cast(binding);
    IBinding owner = binding.getOwner();
    if (!bindings.isMessage(owner)) {
      return null;
    }
    String typeName = typeNameOf(typeDef);
    String typeNameSuffix = owner.getName() + "_" + typeDef.getName();
    if (typeName == null || !typeName.endsWith(typeNameSuffix)) {
      return null;
    }
    return new CppToProtobufMapping(bindings.qualifiedNameOf(typeDef), MESSAGE);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.