protected override IProcessor GetProcessor()
        {
            var options = new RawScanParentChildDistillerOptions()
            {
                InputFile  = rawFile.FullName,
                OutputFile = rawFile.FullName + ".scan"
            };

            return(new RawScanParentChildDistiller(options));
        }
 public RawScanParentChildDistiller(RawScanParentChildDistillerOptions options)
 {
     _options = options;
 }