mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
CUETools.Processor: split classes into separate files.
This commit is contained in:
18
CUETools.Processor/CUEToolsSourceFile.cs
Normal file
18
CUETools.Processor/CUEToolsSourceFile.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.IO;
|
||||
|
||||
namespace CUETools.Processor
|
||||
{
|
||||
public class CUEToolsSourceFile
|
||||
{
|
||||
public string path;
|
||||
public string contents;
|
||||
public object data;
|
||||
|
||||
public CUEToolsSourceFile(string _path, TextReader reader)
|
||||
{
|
||||
path = _path;
|
||||
contents = reader.ReadToEnd();
|
||||
reader.Close();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user