mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			315 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			315 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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);
 | |
| 		}
 | |
| 	}
 | |
| }
 |