X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=inputdata.h;h=6d2d004911b663c63c1b5b582411bb38b70e3c00;hb=96b36196d49a3d1f6bc49a26a9d2aa2da7ff876e;hp=1352e94c760469b071a3b56363c932f3be901004;hpb=bfbc55964f1977da72c2cea984288a427d370a59;p=mothur.git diff --git a/inputdata.h b/inputdata.h index 1352e94..6d2d004 100644 --- a/inputdata.h +++ b/inputdata.h @@ -8,8 +8,6 @@ #include "listvector.hpp" -using namespace std; - class InputData { public: @@ -17,10 +15,19 @@ public: InputData(string, string, string); ~InputData(); ListVector* getListVector(); + ListVector* getListVector(string); //pass the label you want SharedListVector* getSharedListVector(); - OrderVector* getOrderVector(); + SharedListVector* getSharedListVector(string); //pass the label you want + OrderVector* getOrderVector(); + OrderVector* getOrderVector(string); //pass the label you want SharedOrderVector* getSharedOrderVector(); + SharedOrderVector* getSharedOrderVector(string); //pass the label you want SAbundVector* getSAbundVector(); + SAbundVector* getSAbundVector(string); //pass the label you want + RAbundVector* getRAbundVector(); + RAbundVector* getRAbundVector(string); //pass the label you want + vector getSharedRAbundVectors(); + vector getSharedRAbundVectors(string); //pass the label you want private: string format; @@ -31,7 +38,9 @@ private: OrderVector* output; SharedOrderVector* SharedOrder; SAbundVector* sabund; + RAbundVector* rabund; map orderMap; + string filename; };