|
|
@ -137,11 +137,19 @@ namespace CppSharp.AST |
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
public struct QualifiedType |
|
|
|
public struct QualifiedType |
|
|
|
{ |
|
|
|
{ |
|
|
|
public QualifiedType(Type type) : this() |
|
|
|
public QualifiedType(Type type) |
|
|
|
|
|
|
|
: this() |
|
|
|
{ |
|
|
|
{ |
|
|
|
Type = type; |
|
|
|
Type = type; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public QualifiedType(Type type, TypeQualifiers qualifiers) |
|
|
|
|
|
|
|
: this() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
Type = type; |
|
|
|
|
|
|
|
Qualifiers = qualifiers; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public Type Type { get; set; } |
|
|
|
public Type Type { get; set; } |
|
|
|
public TypeQualifiers Qualifiers { get; set; } |
|
|
|
public TypeQualifiers Qualifiers { get; set; } |
|
|
|
|
|
|
|
|
|
|
|