]> git.donarmstrong.com Git - mothur.git/blobdiff - inputdata.h
minor bugs fixes and added line and label options to read.otu's parselist and shared...
[mothur.git] / inputdata.h
index 46d1655cdd62f4578b5bf82a114143a31454a689..b6912b3c8bef9803dae6aad648f97a80b3844b5b 100644 (file)
@@ -6,6 +6,8 @@
 #include <string>
 #include <fstream>
 #include "ordervector.hpp"
+#include "sharedlistvector.h"
+#include "sharedordervector.h"
 #include "listvector.hpp"
 
 
@@ -18,7 +20,9 @@ public:
        InputData(string, string, string);
        ~InputData();
        ListVector* getListVector();
+       SharedListVector* getSharedListVector();
        OrderVector* getOrderVector();
+       SharedOrderVector* getSharedOrderVector();
        SAbundVector* getSAbundVector();
        
 private:
@@ -26,10 +30,12 @@ private:
        ifstream fileHandle;
        DataVector* input;
        ListVector* list;
+       SharedListVector* SharedList;
        OrderVector* output;
+       SharedOrderVector* SharedOrder;
        SAbundVector* sabund;
        map<string,int> orderMap;
 };
 
 
-#endif
\ No newline at end of file
+#endif