]> git.donarmstrong.com Git - mothur.git/blobdiff - inputdata.h
bug fixes
[mothur.git] / inputdata.h
index 251df5bf9a11d230eaae79103c8546e7def900a7..ccf35512264023384e3426040dcddcad691f8a42 100644 (file)
@@ -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<SharedRAbundVector*> getSharedRAbundVectors();
        vector<SharedRAbundVector*> getSharedRAbundVectors(string);  //pass the label you want
+       vector<SharedRAbundFloatVector*> getSharedRAbundFloatVectors();
+       vector<SharedRAbundFloatVector*> getSharedRAbundFloatVectors(string);  //pass the label you want
        
 private:
        string format;
@@ -42,6 +46,7 @@ private:
        map<string,int> orderMap;
        string filename;
        MothurOut* m;
+       GlobalData* globaldata;
 };