]> git.donarmstrong.com Git - mothur.git/blob - database.hpp
Initial revision
[mothur.git] / database.hpp
1 #ifndef DATABASE_HPP
2 #define DATABASE_HPP
3
4 /*
5  *  database.hpp
6  *  
7  *
8  *  Created by Pat Schloss on 12/16/08.
9  *  Copyright 2008 Patrick D. Schloss. All rights reserved.
10  *
11  */
12
13 class Database {
14 public:
15         Database(string);
16         virtual Sequence* findClosestSequence(Sequence*) = 0;
17         
18 protected:
19         int numSeqs;
20         vector<Sequence*> templateSequences;    
21 };
22
23 #endif