X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=command.hpp;h=b6bf5cd397644ad215a8a88f269f461d04add112;hb=5df1b242d9c2b604eb414da44b28de81d52567d7;hp=1dd5e871aaa66362e02e997c9ff26b427ed9178a;hpb=02909d6cae9963ba00dc746969a370fa8ca934fc;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