Exemplo n.º 1
0
 public CountDsvRecord(DsvRecordHandler next = null) : base(next)
 {
     count = 0;
 }
Exemplo n.º 2
0
 public TagDsvRecord(string _tag, DsvRecordHandler next = null) : base(next)
 {
     tag = _tag;
 }
Exemplo n.º 3
0
 public DsvRecordHandler(DsvRecordHandler _next = null)
 {
     next = _next;
 }
Exemplo n.º 4
0
 public PrintDsvRecord(DsvRecordHandler next = null) : base(next)
 {
 }
Exemplo n.º 5
0
 public ConvertDsvLineToDsvRecord(DsvLineConfig _config, DsvRecordHandler _next) : base()
 {
     config = _config;
     next_  = _next;
 }