Refactoring command args and change the signal instance implement.

This commit is contained in:
qianlifeng
2014-10-21 18:16:05 +08:00
parent 1cf79d8fbc
commit be33ac3c4f
14 changed files with 712 additions and 149 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Wox.PluginLoader;
namespace Wox.CommandArgs
{
public class ReloadPluginCommandArg : ICommandArg
{
public string Command
{
get { return "reloadplugin"; }
}
public void Execute(IList<string> args)
{
Plugins.Init();
}
}
}