Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] How to create BaseClassInfo if I just have a name
  • From: Ming Cheng <chengm349@xxxxxxxxxxx>
  • Date: Tue, 17 Mar 2020 09:13:25 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=none; dmarc=none; dkim=none; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=xjHXgc7mltNBg1kivCr27FZph88Hl5Jp5dTmm+sF7bY=; b=Ph6lcbFWprvQdiyRbLRjzCrtD/yKKeVhkOzBx+O+DbuHVhaf5LtCZdhTfjGeOBoDM32+ayqxAfQGH0MAnrg06L8YOnK7iEjWJT41EDGiLPJQuoeYCpCqpMS/Ng6NgvGNWYs76vkJXvIVYpum+5BgOW/01rGXxECCze2rtxxARZrcySKG34jKd2RRp2UESR/JDBhDelxlGoeQAfhE4WFCANDWJUyj04GoVW0ebIAIDoivO06tdjHBrNZeAV42P51l39oOrw34EzDJWmC89CMdfhPJmSxuvta3XAr7+TprPRz2Cw2p0FuJj1rKvJx/ek+mszUEdV/imBJC2+0hpxDGLg==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=eyjvjoB1nvm3wEQ6eO78U4Ti7LuwF0EijNhWrPlOUOn9fsGAibJaJVLBf4oTYPQ/MW4ti7vhlmqpbO9PXAs0b5byBvIwi7HyOa9WIe+PvajZ2P8RfO6qcrHL798Vv4tpKDwuGbkmyjagv3tdfD2a5igYVPwtnLJxZ3HJjiSr7rBSKEvfFsHLSeaL4jQIJ+0C7SrId844I8l0oLJrznHFDNdvZV2bGXwykXDOdXB8Yv8GBQCbuu7aF59FnOaTKIW3n8cK65+oYG4DPQKOGeGN38PjZQgyI2Xeuzrbiuz4bMju3wi7a180ehP/cqdtZs86djzTgJvtv+FY444A+Eon5Q==
  • Delivered-to: cdt-dev@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/cdt-dev>
  • List-help: <mailto:cdt-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/cdt-dev>, <mailto:cdt-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/cdt-dev>, <mailto:cdt-dev-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AQHV/DwjmcM0l6zN+0+GU4Ndyn0Pyg==
  • Thread-topic: How to create BaseClassInfo if I just have a name

Hi,

public BaseClassInfo(ITypeInfo type, ASTAccessVisibility access, boolean isVirtual) {
fType = type;
fAccess = access;
fIsVirtual = isVirtual;
}

Or the question eventually could become how to create an object of ITypeInfo from string name with other necessary hard-coded value?

Thanks.

Back to the top