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