]> git.donarmstrong.com Git - mothur.git/blobdiff - inputdata.h
finishing the container classes, combining read.otu and read.list commands. some...
[mothur.git] / inputdata.h
index 46d1655cdd62f4578b5bf82a114143a31454a689..6d814c584a6c3abd332034c17bfa3b8616db9c0c 100644 (file)
@@ -6,6 +6,7 @@
 #include <string>
 #include <fstream>
 #include "ordervector.hpp"
+#include "sharedlistvector.h"
 #include "listvector.hpp"
 
 
@@ -18,6 +19,7 @@ public:
        InputData(string, string, string);
        ~InputData();
        ListVector* getListVector();
+       SharedListVector* getSharedListVector();
        OrderVector* getOrderVector();
        SAbundVector* getSAbundVector();
        
@@ -26,6 +28,7 @@ private:
        ifstream fileHandle;
        DataVector* input;
        ListVector* list;
+       SharedListVector* SharedList;
        OrderVector* output;
        SAbundVector* sabund;
        map<string,int> orderMap;