blob: 64b4c72061d48bb7c3f78842cd969566dbb33969 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Logging
{
public interface ILogFileParser<T>
{
List<T> Parse(LogFile logFile);
List<T> Parse(String file, DateTime fileDate);
List<LogFile> GetLogFiles();
}
}
|