2016-01-31 06:56:55 -05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using Filtration.ObjectModel;
|
|
|
|
|
|
|
|
namespace Filtration.Parser.Interface.Services
|
|
|
|
{
|
|
|
|
public interface IBlockGroupHierarchyBuilder
|
|
|
|
{
|
|
|
|
void Initialise(ItemFilterBlockGroup rootBlockGroup);
|
|
|
|
void Cleanup();
|
2018-09-06 06:54:54 -04:00
|
|
|
ItemFilterBlockGroup IntegrateStringListIntoBlockGroupHierarchy(IEnumerable<string> groupStrings, bool show, bool enabled);
|
2016-01-31 06:56:55 -05:00
|
|
|
}
|
|
|
|
}
|