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.
21 lines
412 B
21 lines
412 B
namespace CppSharp.AST |
|
{ |
|
public class Friend : Declaration |
|
{ |
|
public Declaration Declaration { get; set; } |
|
|
|
public Friend() |
|
{ |
|
} |
|
|
|
public Friend(Declaration declaration) |
|
{ |
|
Declaration = declaration; |
|
} |
|
|
|
public override T Visit<T>(IDeclVisitor<T> visitor) |
|
{ |
|
return visitor.VisitFriend(this); |
|
} |
|
} |
|
}
|
|
|