mirror of
https://github.com/chylex/Code-Statistics.git
synced 2024-11-24 12:42:46 +01:00
17 lines
468 B
C#
17 lines
468 B
C#
using CodeStatisticsCore.Handling;
|
|
using CodeStatisticsCore.Handling.Files;
|
|
using CodeStatisticsCore.Input;
|
|
|
|
namespace CodeStatistics.Handling.General{
|
|
class UnknownHandler : AbstractFileHandler{
|
|
public override int Weight{
|
|
get { return 1; }
|
|
}
|
|
|
|
public override void Process(File file, Variables.Root variables){
|
|
base.Process(file, variables);
|
|
variables.Increment("fileTypeUnknown");
|
|
}
|
|
}
|
|
}
|