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.
36 lines
655 B
36 lines
655 B
#pragma once |
|
|
|
#include "CppSharp.h" |
|
#include <Sources.h> |
|
|
|
namespace CppSharp |
|
{ |
|
namespace Parser |
|
{ |
|
value struct SourceLocation; |
|
} |
|
} |
|
|
|
namespace CppSharp |
|
{ |
|
namespace Parser |
|
{ |
|
public value struct SourceLocation |
|
{ |
|
public: |
|
|
|
SourceLocation(::CppSharp::CppParser::SourceLocation* native); |
|
SourceLocation(System::IntPtr native); |
|
SourceLocation(unsigned int ID); |
|
|
|
property unsigned int ID |
|
{ |
|
unsigned int get(); |
|
void set(unsigned int); |
|
} |
|
|
|
private: |
|
unsigned int __ID; |
|
}; |
|
} |
|
}
|
|
|