mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Move stat report enum to better namespace
This commit is contained in:
@@ -1,9 +1,9 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
using SabreTools.Core;
|
|
||||||
using SabreTools.DatTools;
|
using SabreTools.DatTools;
|
||||||
using SabreTools.Help;
|
using SabreTools.Help;
|
||||||
|
using SabreTools.Reports;
|
||||||
|
|
||||||
namespace RombaSharp.Features
|
namespace RombaSharp.Features
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
using System.IO;
|
namespace SabreTools.Core
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
namespace SabreTools.Core
|
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Constants that are used throughout the library
|
/// Constants that are used throughout the library
|
||||||
|
|||||||
@@ -1033,47 +1033,4 @@ namespace SabreTools.Core
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Reports
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Determine which format to output Stats to
|
|
||||||
/// </summary>
|
|
||||||
[Flags]
|
|
||||||
public enum StatReportFormat
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Only output to the console
|
|
||||||
/// </summary>
|
|
||||||
None = 0x00,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Console-formatted
|
|
||||||
/// </summary>
|
|
||||||
Textfile = 1 << 0,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// ClrMamePro HTML
|
|
||||||
/// </summary>
|
|
||||||
HTML = 1 << 1,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Comma-Separated Values (Standardized)
|
|
||||||
/// </summary>
|
|
||||||
CSV = 1 << 2,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Semicolon-Separated Values (Standardized)
|
|
||||||
/// </summary>
|
|
||||||
SSV = 1 << 3,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Tab-Separated Values (Standardized)
|
|
||||||
/// </summary>
|
|
||||||
TSV = 1 << 4,
|
|
||||||
|
|
||||||
All = Int32.MaxValue,
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
using SabreTools.Core;
|
|
||||||
using SabreTools.DatFiles;
|
using SabreTools.DatFiles;
|
||||||
using SabreTools.Reports.Formats;
|
using SabreTools.Reports.Formats;
|
||||||
|
|
||||||
|
|||||||
43
SabreTools.Reports/Enums.cs
Normal file
43
SabreTools.Reports/Enums.cs
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
using System;
|
||||||
|
|
||||||
|
namespace SabreTools.Reports
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Determine which format to output Stats to
|
||||||
|
/// </summary>
|
||||||
|
[Flags]
|
||||||
|
public enum StatReportFormat
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Only output to the console
|
||||||
|
/// </summary>
|
||||||
|
None = 0x00,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Console-formatted
|
||||||
|
/// </summary>
|
||||||
|
Textfile = 1 << 0,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// ClrMamePro HTML
|
||||||
|
/// </summary>
|
||||||
|
HTML = 1 << 1,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Comma-Separated Values (Standardized)
|
||||||
|
/// </summary>
|
||||||
|
CSV = 1 << 2,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Semicolon-Separated Values (Standardized)
|
||||||
|
/// </summary>
|
||||||
|
SSV = 1 << 3,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Tab-Separated Values (Standardized)
|
||||||
|
/// </summary>
|
||||||
|
TSV = 1 << 4,
|
||||||
|
|
||||||
|
All = Int32.MaxValue,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -9,6 +9,7 @@ using SabreTools.Filtering;
|
|||||||
using SabreTools.Help;
|
using SabreTools.Help;
|
||||||
using SabreTools.IO;
|
using SabreTools.IO;
|
||||||
using SabreTools.Logging;
|
using SabreTools.Logging;
|
||||||
|
using SabreTools.Reports;
|
||||||
using Microsoft.Data.Sqlite;
|
using Microsoft.Data.Sqlite;
|
||||||
|
|
||||||
namespace SabreTools.Features
|
namespace SabreTools.Features
|
||||||
|
|||||||
Reference in New Issue
Block a user