using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Wox.Plugin.System { public abstract class BaseSystemPlugin :ISystemPlugin { protected abstract List QueryInternal(Query query); protected abstract void InitInternal(PluginInitContext context); public List Query(Query query) { if (string.IsNullOrEmpty(query.RawQuery)) return new List(); return QueryInternal(query); } public void Init(PluginInitContext context) { InitInternal(context); } public virtual string Name { get { return "System workflow"; } } public virtual string Description { get { return "System workflow"; } } public virtual string IcoPath { get { return null; } } public string PluginDirectory { get; set; } } }