mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Add proper block comments to DatTools classes
This commit is contained in:
@@ -11,7 +11,9 @@ using SabreTools.Logging;
|
||||
|
||||
namespace SabreTools.DatTools
|
||||
{
|
||||
// This file represents all methods related to converting and updating DatFiles
|
||||
/// <summary>
|
||||
/// Helper methods for updating and converting DatFiles
|
||||
/// </summary>
|
||||
public class DatFileTool
|
||||
{
|
||||
#region Logging
|
||||
|
||||
@@ -13,9 +13,11 @@ using SabreTools.Filtering;
|
||||
using SabreTools.IO;
|
||||
using SabreTools.Logging;
|
||||
|
||||
// This file represents all methods related to the Filtering namespace
|
||||
namespace SabreTools.DatTools
|
||||
{
|
||||
/// <summary>
|
||||
/// Helper methods for cleaning and filtering DatFiles
|
||||
/// </summary>
|
||||
public class Modification
|
||||
{
|
||||
#region Logging
|
||||
|
||||
@@ -8,9 +8,11 @@ using SabreTools.DatItems;
|
||||
using SabreTools.IO;
|
||||
using SabreTools.Logging;
|
||||
|
||||
// This file represents all methods related to parsing from a file
|
||||
namespace SabreTools.DatTools
|
||||
{
|
||||
/// <summary>
|
||||
/// Helper methods for parsing into DatFiles
|
||||
/// </summary>
|
||||
public class Parser
|
||||
{
|
||||
#region Logging
|
||||
|
||||
@@ -13,9 +13,11 @@ using SabreTools.IO;
|
||||
using SabreTools.Logging;
|
||||
using SabreTools.Skippers;
|
||||
|
||||
// This file represents all methods related to rebuilding from a DatFile
|
||||
namespace SabreTools.DatTools
|
||||
{
|
||||
/// <summary>
|
||||
/// Helper methods for rebuilding from DatFiles
|
||||
/// </summary>
|
||||
public class Rebuilder
|
||||
{
|
||||
#region Logging
|
||||
|
||||
@@ -12,10 +12,12 @@ using SabreTools.IO;
|
||||
using SabreTools.Logging;
|
||||
using NaturalSort;
|
||||
|
||||
// This file represents all methods related to splitting a DatFile into multiple
|
||||
namespace SabreTools.DatTools
|
||||
{
|
||||
// TODO: Implement Level split
|
||||
/// <summary>
|
||||
/// Helper methods for splitting DatFiles
|
||||
/// </summary>
|
||||
/// <remarks>TODO: Implement Level split</remarks>
|
||||
public class Splitter
|
||||
{
|
||||
#region Logging
|
||||
|
||||
@@ -12,6 +12,10 @@ using SabreTools.Reports;
|
||||
|
||||
namespace SabreTools.DatTools
|
||||
{
|
||||
/// <summary>
|
||||
/// Helper methods for dealing with DatFile statistics
|
||||
/// </summary>
|
||||
|
||||
public class Statistics
|
||||
{
|
||||
#region Logging
|
||||
|
||||
@@ -10,9 +10,11 @@ using SabreTools.FileTypes;
|
||||
using SabreTools.FileTypes.Archives;
|
||||
using SabreTools.Logging;
|
||||
|
||||
// This file represents all methods related to verifying with a DatFile
|
||||
namespace SabreTools.DatTools
|
||||
{
|
||||
/// <summary>
|
||||
/// Helper methods for verifying data from DatFiles
|
||||
/// </summary>
|
||||
public class Verification
|
||||
{
|
||||
#region Logging
|
||||
|
||||
@@ -10,9 +10,11 @@ using SabreTools.IO;
|
||||
using SabreTools.Logging;
|
||||
using SabreTools.Reports;
|
||||
|
||||
// This file represents all methods related to writing to a file
|
||||
namespace SabreTools.DatTools
|
||||
{
|
||||
/// <summary>
|
||||
/// Helper methods for writing from DatFiles
|
||||
/// </summary>
|
||||
public class Writer
|
||||
{
|
||||
#region Logging
|
||||
|
||||
Reference in New Issue
Block a user