Package org.eclipse.cdt.core.dom.ast

Examples of org.eclipse.cdt.core.dom.ast.IType


    }
    return new CppToProtobufMapping(bindings.qualifiedNameOf(typeDef), MESSAGE);
  }

  private String typeNameOf(CPPTypedef typeDef) {
    IType type = typeDef.getType();
    if (type instanceof CPPClassType) {
      return ((CPPClassType) type).getName();
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.cdt.core.dom.ast.IType

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.