[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
{
/*
* TODO: Full archive support for: RAR, LRZip, ZPAQ?, Zstd?, LZ4?
* Torrent 7-zip: https://sourceforge.net/p/t7z/code/HEAD/tree/
* 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
*/
/// <summary>
/// Tools for working with archives
/// </summary>
/// <remarks>
/// TODO: Full archive support for: RAR, LRZip, ZPAQ?, Zstd?, LZ4?
/// Torrent 7-zip: https://sourceforge.net/p/t7z/code/HEAD/tree/
/// 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
{
private const int _bufferSize = 4096 * 128;