mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 13:15:07 +00:00
Created S# .sln and moved project to src folder
This commit is contained in:
21
ICD.Common/Utils/IO/IcdTextReader.cs
Normal file
21
ICD.Common/Utils/IO/IcdTextReader.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
#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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user