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