|
|
@ -10,11 +10,10 @@ |
|
|
|
#include "Helpers.h" |
|
|
|
#include "Helpers.h" |
|
|
|
#include "Sources.h" |
|
|
|
#include "Sources.h" |
|
|
|
#include "Types.h" |
|
|
|
#include "Types.h" |
|
|
|
|
|
|
|
|
|
|
|
#include <algorithm> |
|
|
|
#include <algorithm> |
|
|
|
|
|
|
|
|
|
|
|
namespace CppSharp { |
|
|
|
namespace CppSharp::CppParser::AST { |
|
|
|
namespace CppParser { |
|
|
|
|
|
|
|
namespace AST { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
enum class DeclarationKind |
|
|
|
enum class DeclarationKind |
|
|
|
{ |
|
|
|
{ |
|
|
@ -819,7 +818,7 @@ namespace AST { |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
|
TranslationUnit(); |
|
|
|
TranslationUnit(); |
|
|
|
~TranslationUnit(); |
|
|
|
|
|
|
|
std::string fileName; |
|
|
|
std::string fileName; |
|
|
|
bool isSystemHeader; |
|
|
|
bool isSystemHeader; |
|
|
|
VECTOR(MacroDefinition*, Macros) |
|
|
|
VECTOR(MacroDefinition*, Macros) |
|
|
@ -833,7 +832,4 @@ namespace AST { |
|
|
|
TranslationUnit* FindOrCreateModule(const std::string& File); |
|
|
|
TranslationUnit* FindOrCreateModule(const std::string& File); |
|
|
|
VECTOR(TranslationUnit*, TranslationUnits) |
|
|
|
VECTOR(TranslationUnit*, TranslationUnits) |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} // namespace CppSharp::CppParser::AST
|
|
|
|
} // namespace CppSharp::CppParser::AST
|