1- using LogExpert ;
2-
31using System ;
42
3+ using LogExpert ;
4+
55namespace AutoColumnizer ;
66
77public class AutoColumnizer : ILogLineColumnizer
@@ -10,53 +10,53 @@ public class AutoColumnizer : ILogLineColumnizer
1010
1111 public string Text => GetName ( ) ;
1212
13- public bool IsTimeshiftImplemented ( )
13+ public bool IsTimeshiftImplemented ( )
1414 {
1515 return true ;
1616 }
1717
18- public string GetName ( )
18+ public string GetName ( )
1919 {
2020 return "Auto Columnizer" ;
2121 }
2222
23- public string GetDescription ( )
23+ public string GetDescription ( )
2424 {
2525 return "Automatically find the right columnizer for any file" ;
2626 }
2727
2828
29- public int GetColumnCount ( )
29+ public int GetColumnCount ( )
3030 {
3131 throw new NotImplementedException ( ) ;
3232 }
3333
34- public string [ ] GetColumnNames ( )
34+ public string [ ] GetColumnNames ( )
3535 {
3636 throw new NotImplementedException ( ) ;
3737 }
3838
39- public IColumnizedLogLine SplitLine ( ILogLineColumnizerCallback callback , ILogLine line )
39+ public IColumnizedLogLine SplitLine ( ILogLineColumnizerCallback callback , ILogLine line )
4040 {
4141 throw new NotImplementedException ( ) ;
4242 }
4343
44- public void SetTimeOffset ( int msecOffset )
44+ public void SetTimeOffset ( int msecOffset )
4545 {
4646 throw new NotImplementedException ( ) ;
4747 }
4848
49- public int GetTimeOffset ( )
49+ public int GetTimeOffset ( )
5050 {
5151 throw new NotImplementedException ( ) ;
5252 }
5353
54- public DateTime GetTimestamp ( ILogLineColumnizerCallback callback , ILogLine line )
54+ public DateTime GetTimestamp ( ILogLineColumnizerCallback callback , ILogLine line )
5555 {
5656 throw new NotImplementedException ( ) ;
5757 }
5858
59- public void PushValue ( ILogLineColumnizerCallback callback , int column , string value , string oldValue )
59+ public void PushValue ( ILogLineColumnizerCallback callback , int column , string value , string oldValue )
6060 {
6161 }
6262
0 commit comments