mirror of https://github.com/mono/CppSharp.git
c-sharpdotnetmonobindingsbridgecclangcpluspluscppsharpglueinteropparserparsingpinvokeswigsyntax-treevisitorsxamarinxamarin-bindings
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
404 B
18 lines
404 B
namespace CppSharp.AST |
|
{ |
|
/// <summary> |
|
/// Gives the ability to specify attributes to generate, for example ObsoleteAttribute. |
|
/// </summary> |
|
public class Attribute |
|
{ |
|
public Attribute() |
|
{ |
|
Type = typeof(object); |
|
Value = string.Empty; |
|
} |
|
|
|
public System.Type Type { get; set; } |
|
|
|
public string Value { get; set; } |
|
} |
|
}
|
|
|