mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-10 02:05:20 +00:00
22 lines
486 B
C#
22 lines
486 B
C#
using System;
|
|
#if SIMPLSHARP
|
|
using Crestron.SimplSharp.CrestronIO;
|
|
#elif STANDARD
|
|
using System.IO;
|
|
#endif
|
|
|
|
namespace ICD.Common.Utils.IO
|
|
{
|
|
public sealed class IcdStreamWriter : IcdTextWriter
|
|
{
|
|
public StreamWriter WrappedStreamWriter { get { return WrappedTextWriter as StreamWriter; } }
|
|
|
|
/// <summary>
|
|
/// Constructor.
|
|
/// </summary>
|
|
/// <param name="baseStreamWriter"></param>
|
|
public IcdStreamWriter(StreamWriter baseStreamWriter) : base(baseStreamWriter)
|
|
{
|
|
}
|
|
}
|
|
} |