C# Class BindingsGenerator.Parameter

"int foo" or "const char *str"
Afficher le fichier Open project: realXtend/tundra-urho3d Class Usage Examples

Méthodes publiques

Свойство Type Description
comment string
defaultValue string
name string
type string

Méthodes publiques

Méthode Description
BasicType ( ) : string

If type "const float3 &" -> BasicType() returns "float3". If type "const float3 &" -> BasicType() returns "float3". If type "float3 * const" -> BasicType() returns "float3*". If type "const float3 * const" -> BasicType() returns "const float3*".

BasicTypeId ( ) : string

Returns the basic type as a sanitated identifier. If type "const float3 &" -> BasicType() returns "float3". If type "const float3 &" -> BasicType() returns "float3". If type "float3 * const" -> BasicType() returns "float3_ptr". If type "const float3 * const" -> BasicType() returns "float3_ptr".

BasicTypeRetainReference ( ) : string
IsAPointer ( ) : bool
IsAReference ( ) : bool

Method Details

BasicType() public méthode

If type "const float3 &" -> BasicType() returns "float3". If type "const float3 &" -> BasicType() returns "float3". If type "float3 * const" -> BasicType() returns "float3*". If type "const float3 * const" -> BasicType() returns "const float3*".
public BasicType ( ) : string
Résultat string

BasicTypeId() public méthode

Returns the basic type as a sanitated identifier. If type "const float3 &" -> BasicType() returns "float3". If type "const float3 &" -> BasicType() returns "float3". If type "float3 * const" -> BasicType() returns "float3_ptr". If type "const float3 * const" -> BasicType() returns "float3_ptr".
public BasicTypeId ( ) : string
Résultat string

BasicTypeRetainReference() public méthode

public BasicTypeRetainReference ( ) : string
Résultat string

IsAPointer() public méthode

public IsAPointer ( ) : bool
Résultat bool

IsAReference() public méthode

public IsAReference ( ) : bool
Résultat bool

Property Details

comment public_oe property

public string comment
Résultat string

defaultValue public_oe property

public string defaultValue
Résultat string

name public_oe property

public string name
Résultat string

type public_oe property

public string type
Résultat string