table Class

Overview

Class = {
    -- fields

    templateParamArray,
    templateSpecParamArray,
    baseTypeArray,
    baseTypeProtectionArray,
    derivedTypeArray,

    -- inherited from Compound

    compoundKind,
    id,
    name,
    title,
    importId,
    group,
    path,
    importArray,
    briefDescription,
    detailedDescription,
    location,
}

Detailed Documentation

Fields

templateParamArray

Holds a table containing an array of all template parameters of the compound.

Type of each element of the array is Param

This field is only set when compoundKind is one of:

struct
union
class
interface
templateSpecParamArray

Holds a table containing an array of all template specialization parameters of the compound.

Type of each element of the array is Param

This field is only set when compoundKind is one of:

struct
union
class
interface