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:
26
CUETools.Processor/CUEStyle.cs
Normal file
26
CUETools.Processor/CUEStyle.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
namespace CUETools.Processor
|
||||
{
|
||||
public enum CUEStyle
|
||||
{
|
||||
/// <summary>
|
||||
/// Single file with embedded CUE
|
||||
/// </summary>
|
||||
SingleFileWithCUE,
|
||||
/// <summary>
|
||||
/// Single file with external CUE
|
||||
/// </summary>
|
||||
SingleFile,
|
||||
/// <summary>
|
||||
/// Gaps prepended file-per-track
|
||||
/// </summary>
|
||||
GapsPrepended,
|
||||
/// <summary>
|
||||
/// Gaps appended (noncompliant) file-per-track
|
||||
/// </summary>
|
||||
GapsAppended,
|
||||
/// <summary>
|
||||
/// Gaps left out file-per-track
|
||||
/// </summary>
|
||||
GapsLeftOut
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user