Tools and libraries to glue C/C++ APIs to high-level languages
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
435 B

/************************************************************************
*
* CppSharp
* Licensed under the simplified BSD license. All rights reserved.
*
************************************************************************/
#pragma once
#include "Helpers.h"
namespace CppSharp { namespace CppParser {
struct CS_API CS_VALUE_TYPE SourceLocation
{
SourceLocation();
SourceLocation(unsigned ID);
unsigned ID;
};
} }