Browse Source

Rearranged members order in ParserOptions.

pull/86/head
triton 12 years ago
parent
commit
f11d7a3fc0
  1. 9
      src/CppParser/CppParser.h

9
src/CppParser/CppParser.h

@ -26,25 +26,24 @@ struct CS_API ParserOptions @@ -26,25 +26,24 @@ struct CS_API ParserOptions
{
}
// C/C++ header file name.
std::string FileName;
// Include directories
std::vector<std::string> IncludeDirs;
std::vector<std::string> SystemIncludeDirs;
std::vector<std::string> Defines;
std::vector<std::string> LibraryDirs;
// C/C++ header file name.
std::string FileName;
CppSharp::CppParser::AST::ASTContext* ASTContext;
int ToolSetToUse;
std::string TargetTriple;
CppAbi Abi;
bool NoStandardIncludes;
bool NoBuiltinIncludes;
bool MicrosoftMode;
CppAbi Abi;
bool Verbose;
};

Loading…
Cancel
Save