Files
sharpcompress/SharpCompress/Common/FilePart.cs

12 lines
274 B
C#
Raw Normal View History

2013-04-07 10:58:58 +01:00
using System.IO;
namespace SharpCompress.Common
{
public abstract class FilePart
{
2013-04-28 12:32:55 +01:00
internal abstract string FilePartName { get; }
2013-04-07 10:58:58 +01:00
internal abstract Stream GetCompressedStream();
internal abstract Stream GetRawStream();
2013-04-07 10:58:58 +01:00
}
2013-04-28 12:32:55 +01:00
}