]> git.donarmstrong.com Git - mothur.git/blobdiff - inputdata.h
added modify names parameter to set.dir
[mothur.git] / inputdata.h
index 1352e94c760469b071a3b56363c932f3be901004..658b21d8cdfe649d8434e883655ecd18922f2554 100644 (file)
@@ -6,10 +6,9 @@
 #include "sharedlistvector.h"
 #include "sharedordervector.h"
 #include "listvector.hpp"
+#include "sharedrabundfloatvector.h"
 
 
-using namespace std;
-
 class InputData {
        
 public:
@@ -17,10 +16,22 @@ public:
        InputData(string, string, string);
        ~InputData();
        ListVector* getListVector();
+       ListVector* getListVector(string);  //pass the label you want
+       ListVector* getListVector(string, bool);  //pass the label you want, reset filepointer
        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<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;
@@ -31,7 +42,10 @@ private:
        OrderVector* output;
        SharedOrderVector* SharedOrder;
        SAbundVector* sabund;
+       RAbundVector* rabund;
        map<string,int> orderMap;
+       string filename;
+       MothurOut* m;
 };