mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Add regions to CUESheet.cs
This commit is contained in:
@@ -21,6 +21,8 @@ namespace CUETools.Processor
|
||||
{
|
||||
public class CUESheet
|
||||
{
|
||||
#region Fields
|
||||
|
||||
private bool _stop, _pause;
|
||||
private List<CUELine> _attributes;
|
||||
private List<TrackInfo> _tracks;
|
||||
@@ -74,10 +76,18 @@ namespace CUETools.Processor
|
||||
private bool _useLocalDB;
|
||||
private CUEToolsLocalDB _localDB;
|
||||
|
||||
#endregion
|
||||
|
||||
#region Events
|
||||
|
||||
public event EventHandler<CompressionPasswordRequiredEventArgs> PasswordRequired;
|
||||
public event EventHandler<CUEToolsProgressEventArgs> CUEToolsProgress;
|
||||
public event EventHandler<CUEToolsSelectionEventArgs> CUEToolsSelection;
|
||||
|
||||
#endregion
|
||||
|
||||
#region Constructor
|
||||
|
||||
public CUESheet(CUEConfig config)
|
||||
{
|
||||
_config = config;
|
||||
@@ -106,6 +116,10 @@ namespace CUETools.Processor
|
||||
proxy = _config.GetProxy();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Methods
|
||||
|
||||
public void OpenCD(ICDRipper ripper)
|
||||
{
|
||||
_ripper = ripper;
|
||||
@@ -4492,5 +4506,7 @@ namespace CUETools.Processor
|
||||
AsmHelper helper = CompileScript(script);
|
||||
return helper != null;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user