Adding Locate command. (#829)

* Adding Locate command.

* Adding group searching in locate
This commit is contained in:
louib 2017-08-05 12:20:26 -04:00 committed by GitHub
parent ca2e448684
commit b2107b5e27
8 changed files with 207 additions and 0 deletions

View file

@ -26,6 +26,7 @@
#include "EntropyMeter.h"
#include "Extract.h"
#include "List.h"
#include "Locate.h"
#include "Merge.h"
#include "Show.h"
@ -58,6 +59,7 @@ void populateCommands()
commands.insert(QString("clip"), new Clip());
commands.insert(QString("entropy-meter"), new EntropyMeter());
commands.insert(QString("extract"), new Extract());
commands.insert(QString("locate"), new Locate());
commands.insert(QString("ls"), new List());
commands.insert(QString("merge"), new Merge());
commands.insert(QString("show"), new Show());