]> git.donarmstrong.com Git - mothur.git/blob - formatcolumn.h
added formatmatrix, formatcolumn, and formatphylip classes. Used these classes in...
[mothur.git] / formatcolumn.h
1 #ifndef FORMATCOLUMN_H
2 #define FORMATCOLUMN_H
3 /*
4  *  formatcolumn.h
5  *  Mothur
6  *
7  *  Created by westcott on 1/13/10.
8  *  Copyright 2010 Schloss Lab. All rights reserved.
9  *
10  */
11
12 #include "formatmatrix.h"
13
14 /******************************************************/
15
16 class FormatColumnMatrix : public FormatMatrix {
17         
18 public:
19         FormatColumnMatrix(string);
20         ~FormatColumnMatrix();
21         void read(NameAssignment*);
22         
23 private:
24         ifstream fileHandle;
25         string filename;
26         
27 };
28
29 /******************************************************/
30
31 #endif
32