예제 #1
0
파일: Commands.cs 프로젝트: JadeHub/Jade
 public OpenFileCommandParams(IFileHandle file, DisplayCodeLocationCommandParams displayParams)
 {
     File = file;
     DisplayParams = displayParams;
 }
예제 #2
0
파일: Commands.cs 프로젝트: JadeHub/Jade
 public OpenFileCommandParams(IFileHandle file)
 {
     File = file;
     DisplayParams = new DisplayCodeLocationCommandParams(new CppCodeBrowser.CodeLocation(file.Path.Str, 0), true, true);
 }