Files

22 lines
504 B
C#
Raw Permalink Normal View History

2013-04-07 10:58:58 +01:00
using System;
namespace SharpCompress.Common.Zip.Headers
{
internal class SplitHeader : ZipHeader
{
public SplitHeader()
: base(ZipHeaderType.Split)
{
}
internal override void Read(System.IO.BinaryReader reader)
{
throw new NotImplementedException();
}
internal override void Write(System.IO.BinaryWriter writer)
{
throw new NotImplementedException();
}
}
2013-04-28 12:32:55 +01:00
}