mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
28 lines
487 B
C#
28 lines
487 B
C#
|
|
namespace SabreTools.Library.IO
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Different types of CMP rows being parsed
|
|||
|
|
/// </summary>
|
|||
|
|
public enum CmpRowType
|
|||
|
|
{
|
|||
|
|
None,
|
|||
|
|
TopLevel,
|
|||
|
|
Standalone,
|
|||
|
|
Internal,
|
|||
|
|
Comment,
|
|||
|
|
EndTopLevel,
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Different types of INI rows being parsed
|
|||
|
|
/// </summary>
|
|||
|
|
public enum IniRowType
|
|||
|
|
{
|
|||
|
|
None,
|
|||
|
|
SectionHeader,
|
|||
|
|
KeyValue,
|
|||
|
|
Comment,
|
|||
|
|
Invalid,
|
|||
|
|
}
|
|||
|
|
}
|