Created
April 15, 2014 02:10
-
-
Save ryanrousseau/10696418 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using System.Linq; | |
using Common.Logging; | |
using ScriptCs.Contracts; | |
namespace ScriptCs.Exec | |
{ | |
public class PrintFilePreprocessor : FilePreProcessor | |
{ | |
public PrintFilePreprocessor(IFileSystem fileSystem, ILog logger, IEnumerable<ILineProcessor> lineProcessors) | |
: base(fileSystem, logger, lineProcessors.Union(new ILineProcessor[] { new PrintLinePreprocessor() })) | |
{ | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment