X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=command.hpp;fp=command.hpp;h=b6bf5cd397644ad215a8a88f269f461d04add112;hb=74844a60d80c6dd06e3fb02ee9b928424f9019b0;hp=1dd5e871aaa66362e02e997c9ff26b427ed9178a;hpb=a218321731df14d231bbc08e79906f757cf1540d;p=mothur.git diff --git a/command.hpp b/command.hpp index 1dd5e87..b6bf5cd 100644 --- a/command.hpp +++ b/command.hpp @@ -16,13 +16,17 @@ #include "mothur.h" #include "optionparser.h" #include "validparameter.h" +#include "mothurout.h" class Command { public: + Command() { m = MothurOut::getInstance(); } virtual int execute() = 0; virtual void help() = 0; virtual ~Command() { } + protected: + MothurOut* m; }; #endif