]> git.donarmstrong.com Git - mothur.git/blobdiff - formatcolumn.h
added formatmatrix, formatcolumn, and formatphylip classes. Used these classes in...
[mothur.git] / formatcolumn.h
diff --git a/formatcolumn.h b/formatcolumn.h
new file mode 100644 (file)
index 0000000..c713867
--- /dev/null
@@ -0,0 +1,32 @@
+#ifndef FORMATCOLUMN_H
+#define FORMATCOLUMN_H
+/*
+ *  formatcolumn.h
+ *  Mothur
+ *
+ *  Created by westcott on 1/13/10.
+ *  Copyright 2010 Schloss Lab. All rights reserved.
+ *
+ */
+
+#include "formatmatrix.h"
+
+/******************************************************/
+
+class FormatColumnMatrix : public FormatMatrix {
+       
+public:
+       FormatColumnMatrix(string);
+       ~FormatColumnMatrix();
+       void read(NameAssignment*);
+       
+private:
+       ifstream fileHandle;
+       string filename;
+       
+};
+
+/******************************************************/
+
+#endif
+