mirror of
https://github.com/chylex/Code-Statistics.git
synced 2024-11-25 06:42:45 +01:00
13 lines
354 B
C#
13 lines
354 B
C#
using System;
|
|
using CodeStatistics.Forms.Project;
|
|
|
|
namespace CodeStatistics.Input.Methods{
|
|
class DummyInputMethod : IInputMethod{
|
|
public void BeginProcess(ProjectLoadForm.UpdateCallbacks callbacks){
|
|
callbacks.OnReady(new FileSearch(new string[0]));
|
|
}
|
|
|
|
public void CancelProcess(Action onCancelFinish){}
|
|
}
|
|
}
|