mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-10 10:15:04 +00:00
22 lines
360 B
C#
22 lines
360 B
C#
#if SIMPLSHARP
|
|
using Crestron.SimplSharp.CrestronIO;
|
|
|
|
#else
|
|
using System.IO;
|
|
#endif
|
|
|
|
namespace ICD.Common.Utils.IO
|
|
{
|
|
public class IcdTextReader
|
|
{
|
|
private readonly TextReader m_TextReader;
|
|
|
|
public TextReader WrappedTextReader { get { return m_TextReader; } }
|
|
|
|
protected IcdTextReader(TextReader textReader)
|
|
{
|
|
m_TextReader = textReader;
|
|
}
|
|
}
|
|
}
|