]> git.donarmstrong.com Git - mothur.git/blobdiff - inputdata.h
Initial revision
[mothur.git] / inputdata.h
diff --git a/inputdata.h b/inputdata.h
new file mode 100644 (file)
index 0000000..46d1655
--- /dev/null
@@ -0,0 +1,35 @@
+#ifndef INPUTDATA_H
+#define INPUTDATA_H
+
+#include <iostream>
+#include <iomanip>
+#include <string>
+#include <fstream>
+#include "ordervector.hpp"
+#include "listvector.hpp"
+
+
+using namespace std;
+
+class InputData {
+       
+public:
+       InputData(string, string);
+       InputData(string, string, string);
+       ~InputData();
+       ListVector* getListVector();
+       OrderVector* getOrderVector();
+       SAbundVector* getSAbundVector();
+       
+private:
+       string format;
+       ifstream fileHandle;
+       DataVector* input;
+       ListVector* list;
+       OrderVector* output;
+       SAbundVector* sabund;
+       map<string,int> orderMap;
+};
+
+
+#endif
\ No newline at end of file