Improve pasting to support different copy sources

This commit is contained in:
azakhi
2018-09-04 14:18:11 +03:00
parent 2ff9ebf242
commit 69ce542c1a
7 changed files with 95 additions and 41 deletions

View File

@@ -5,6 +5,7 @@ namespace Filtration.Parser.Interface.Services
public interface IItemFilterScriptTranslator
{
IItemFilterScript TranslateStringToItemFilterScript(string inputString);
IItemFilterScript TranslatePastedStringToItemFilterScript(string inputString, bool blockGroupsEnabled);
string TranslateItemFilterScriptToString(IItemFilterScript script);
}
}