[Tools/] Add descriptive headers to all classes missing them

This commit is contained in:
Matt Nadareski
2017-10-09 13:14:36 -07:00
parent 40d38f95d3
commit 0caffe3aeb
2 changed files with 14 additions and 8 deletions

View File

@@ -32,14 +32,17 @@ using SharpCompress.Writers;
namespace SabreTools.Library.Tools namespace SabreTools.Library.Tools
{ {
/* /// <summary>
* TODO: Full archive support for: RAR, LRZip, ZPAQ?, Zstd?, LZ4? /// Tools for working with archives
* Torrent 7-zip: https://sourceforge.net/p/t7z/code/HEAD/tree/ /// </summary>
* LRZIP: https://github.com/ckolivas/lrzip /// <remarks>
* ZPAQ: https://github.com/zpaq/zpaq - In progress as external DLL /// TODO: Full archive support for: RAR, LRZip, ZPAQ?, Zstd?, LZ4?
* Zstd: https://github.com/skbkontur/ZstdNet /// Torrent 7-zip: https://sourceforge.net/p/t7z/code/HEAD/tree/
* LZ4: https://github.com/lz4/lz4 /// LRZIP: https://github.com/ckolivas/lrzip
*/ /// ZPAQ: https://github.com/zpaq/zpaq - In progress as external DLL
/// Zstd: https://github.com/skbkontur/ZstdNet
/// LZ4: https://github.com/lz4/lz4
/// </remarks>
public static class ArchiveTools public static class ArchiveTools
{ {
private const int _bufferSize = 4096 * 128; private const int _bufferSize = 4096 * 128;

View File

@@ -34,6 +34,9 @@ using OCRC;
namespace SabreTools.Library.Tools namespace SabreTools.Library.Tools
{ {
/// <summary>
/// Tools for working with non-archive files and stream
/// </summary>
public static class FileTools public static class FileTools
{ {
#region File Information #region File Information