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

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


    }
    IName name = bases[0].getBaseClassSpecifierName();
    if (!(name instanceof CPPASTQualifiedName)) {
      return false;
    }
    CPPASTQualifiedName qualifiedName = (CPPASTQualifiedName) name;
    if (!qualifiedName.isFullyQualified()) {
      return false;
    }
    String qualifiedNameAsText = qualifiedName.toString();
    return MESSAGE_SUPER_TYPES.contains(qualifiedNameAsText);
  }
View Full Code Here

TOP

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

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.