IO namespace

This commit is contained in:
Matt Nadareski
2020-08-01 22:46:28 -07:00
parent 73a8c663a6
commit 41d3d0c848
16 changed files with 41 additions and 50 deletions

View File

@@ -0,0 +1,27 @@
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,
}
}