]> git.donarmstrong.com Git - mothur.git/blob - readcolumn.h
This is v.1.4.0
[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();
21         void read(NameAssignment*);
22 private:
23         ifstream fileHandle;
24         string distFile;
25 };
26
27 /******************************************************/
28
29 #endif