namespace SabreTools.Library.IO
{
///
/// Different types of CMP rows being parsed
///
public enum CmpRowType
{
None,
TopLevel,
Standalone,
Internal,
Comment,
EndTopLevel,
}
///
/// Different types of INI rows being parsed
///
public enum IniRowType
{
None,
SectionHeader,
KeyValue,
Comment,
Invalid,
}
}