You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
410 B
26 lines
410 B
using System;
|
|
using System.IO;
|
|
|
|
namespace SharpCifs.Util.Sharpen
|
|
{
|
|
internal class ObjectInputStream : InputStream
|
|
{
|
|
private BinaryReader _reader;
|
|
|
|
public ObjectInputStream (InputStream s)
|
|
{
|
|
_reader = new BinaryReader (s.GetWrappedStream ());
|
|
}
|
|
|
|
public int ReadInt ()
|
|
{
|
|
return _reader.ReadInt32 ();
|
|
}
|
|
|
|
public object ReadObject ()
|
|
{
|
|
throw new NotImplementedException ();
|
|
}
|
|
}
|
|
}
|