2013-01-18 15:55:50 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
2015-01-03 15:37:29 +00:00
|
|
|
internal interface IParseSupport
|
|
|
|
{
|
|
|
|
Dictionary<string, string> Attributes { get; }
|
|
|
|
bool Parse(string key, string value);
|
|
|
|
Dictionary<string, string> ParseSpecial(Dictionary<string, string> attributes);
|
|
|
|
}
|
|
|
|
}
|