mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-25 16:34:45 +00:00
20 lines
388 B
C#
20 lines
388 B
C#
using System.IO;
|
|
|
|
namespace SharpCompress.Common.Tar
|
|
{
|
|
public class TarVolume : GenericVolume
|
|
{
|
|
public TarVolume(Stream stream, Options options)
|
|
: base(stream, options)
|
|
{
|
|
}
|
|
|
|
#if !PORTABLE
|
|
public TarVolume(FileInfo fileInfo, Options options)
|
|
: base(fileInfo, options)
|
|
{
|
|
}
|
|
#endif
|
|
}
|
|
}
|