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

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


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

  @Override public CppToProtobufMapping createMappingFrom(IBinding binding) {
    CPPEnumeration enumeration = typeOfSupportedBinding().cast(binding);
    return new CppToProtobufMapping(bindings.qualifiedNameOf(enumeration), ENUM);
  }
View Full Code Here

TOP

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

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.