[DatFile, Reports/, Utilities] Make reports also in a factory

This commit is contained in:
Matt Nadareski
2017-11-17 15:08:35 -08:00
parent 7d1a578eb9
commit aa4a7b04ec
5 changed files with 33 additions and 25 deletions

View File

@@ -19,7 +19,7 @@ namespace SabreTools.Library.Reports
/// HTML report format
/// </summary>
/// TODO: Make output standard width, without making the entire thing a table
public class Html : BaseReport
internal class Html : BaseReport
{
/// <summary>
/// Create a new report from the input DatFile and the filename

View File

@@ -15,7 +15,7 @@ namespace SabreTools.Library.Reports
/// <summary>
/// Separated-Value report format
/// </summary>
public class SeparatedValue : BaseReport
internal class SeparatedValue : BaseReport
{
private char _separator;

View File

@@ -16,7 +16,7 @@ namespace SabreTools.Library.Reports
/// <summary>
/// Textfile report format
/// </summary>
public class Textfile : BaseReport
internal class Textfile : BaseReport
{
/// <summary>
/// Create a new report from the input DatFile and the filename