mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-25 19:44:43 +01:00
merge common implementations and server implementations
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System.IO;
|
||||
|
||||
namespace SharpCifs.Util.Sharpen
|
||||
{
|
||||
internal class ObjectOutputStream : OutputStream
|
||||
{
|
||||
private BinaryWriter _bw;
|
||||
|
||||
public ObjectOutputStream (OutputStream os)
|
||||
{
|
||||
_bw = new BinaryWriter (os.GetWrappedStream ());
|
||||
}
|
||||
|
||||
public virtual void WriteInt (int i)
|
||||
{
|
||||
_bw.Write (i);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user