X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=inputdata.h;h=658b21d8cdfe649d8434e883655ecd18922f2554;hp=6d2d004911b663c63c1b5b582411bb38b70e3c00;hb=a8e2df1b96a57f5f29576b08361b86a96a8eff4f;hpb=016a30dacbe75869aef5fdb58d2d1bf9eb8f9b33 diff --git a/inputdata.h b/inputdata.h index 6d2d004..658b21d 100644 --- a/inputdata.h +++ b/inputdata.h @@ -6,6 +6,7 @@ #include "sharedlistvector.h" #include "sharedordervector.h" #include "listvector.hpp" +#include "sharedrabundfloatvector.h" class InputData { @@ -16,6 +17,7 @@ public: ~InputData(); ListVector* getListVector(); ListVector* getListVector(string); //pass the label you want + ListVector* getListVector(string, bool); //pass the label you want, reset filepointer SharedListVector* getSharedListVector(); SharedListVector* getSharedListVector(string); //pass the label you want OrderVector* getOrderVector(); @@ -28,6 +30,8 @@ public: RAbundVector* getRAbundVector(string); //pass the label you want vector getSharedRAbundVectors(); vector getSharedRAbundVectors(string); //pass the label you want + vector getSharedRAbundFloatVectors(); + vector getSharedRAbundFloatVectors(string); //pass the label you want private: string format; @@ -41,6 +45,7 @@ private: RAbundVector* rabund; map orderMap; string filename; + MothurOut* m; };