コード例 #1
0
 /// <summary>
 /// Get Clang Compile Command
 /// </summary>
 /// <param name="complete_filename">Complete Filename</param>
 /// <returns>Clang Compile Command</returns>
 public ClangCompileCommands GetCompileCommands(string complete_filename)
 {
     return(LibClang.clang_CompilationDatabase_getCompileCommands(this.Handle, complete_filename).ToManaged <ClangCompileCommands>());
 }
コード例 #2
0
 public ClangCompileCommands GetCompileCommands(string completeFileName)
 {
     return(new ClangCompileCommands(LibClang.clang_CompilationDatabase_getCompileCommands(Handle, completeFileName)));
 }