2014-07-02 23:11:36 -05:00
|
|
|
|
namespace Ficdown.Parser.Parser
|
2014-06-29 23:04:51 -05:00
|
|
|
|
{
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Model.Parser;
|
|
|
|
|
using Model.Story;
|
|
|
|
|
|
2014-08-09 15:18:31 -05:00
|
|
|
|
internal interface IBlockHandler
|
2014-06-29 23:04:51 -05:00
|
|
|
|
{
|
|
|
|
|
IEnumerable<Block> ExtractBlocks(IEnumerable<string> lines);
|
|
|
|
|
Story ParseBlocks(IEnumerable<Block> blocks);
|
|
|
|
|
}
|
|
|
|
|
}
|