]> git.donarmstrong.com Git - mothur.git/blob - readcolumn.h
Revert to previous commit
[mothur.git] / readcolumn.h
1 #ifndef READCOLUMN_H
2 #define READCOLUMN_H
3 /*
4  *  readcolumn.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 4/21/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 #include "readmatrix.hpp"
13
14 /******************************************************/
15
16 class ReadColumnMatrix : public ReadMatrix {
17         
18 public:
19         ReadColumnMatrix(string);
20         ReadColumnMatrix(string, bool);
21         ~ReadColumnMatrix();
22         int read(NameAssignment*);
23 private:
24         ifstream fileHandle;
25         string distFile;
26         
27 };
28
29 /******************************************************/
30
31 #endif