[doc] add notes for future work

This commit is contained in:
Matt Nadareski
2016-04-25 00:27:27 -07:00
parent 55733f1ec9
commit 77b1512bff

View File

@@ -116,6 +116,7 @@ namespace SabreTools.Helper
/// <param name="filename">Name of the file to be parsed</param> /// <param name="filename">Name of the file to be parsed</param>
/// <param name="logger">Logger object for console and file output</param> /// <param name="logger">Logger object for console and file output</param>
/// <returns>The internal name of the DAT on success, empty string otherwise</returns> /// <returns>The internal name of the DAT on success, empty string otherwise</returns>
/// <remarks>Needs to be upgraded to XmlTextReader</remarks>
public static string GetDatName(string filename, Logger logger) public static string GetDatName(string filename, Logger logger)
{ {
string name = ""; string name = "";
@@ -163,6 +164,7 @@ namespace SabreTools.Helper
/// <param name="filename">Name of the file to be parsed</param> /// <param name="filename">Name of the file to be parsed</param>
/// <param name="logger">Logger object for console and file output</param> /// <param name="logger">Logger object for console and file output</param>
/// <returns>The internal name of the DAT on success, empty string otherwise</returns> /// <returns>The internal name of the DAT on success, empty string otherwise</returns>
/// <remarks>Needs to be upgraded to XmlTextReader</remarks>
public static string GetDatDescription(string filename, Logger logger) public static string GetDatDescription(string filename, Logger logger)
{ {
string desc = ""; string desc = "";