mirror of https://github.com/mono/CppSharp.git
8 changed files with 68 additions and 7 deletions
@ -0,0 +1,18 @@
@@ -0,0 +1,18 @@
|
||||
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; } |
||||
} |
||||
} |
Loading…
Reference in new issue