]> git.donarmstrong.com Git - mothur.git/blob - currentfile.cpp
adding current file class
[mothur.git] / currentfile.cpp
1 /*
2  *  currentfile.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 3/15/11.
6  *  Copyright 2011 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "currentfile.h"
11
12 /******************************************************/
13 CurrentFile* CurrentFile::getInstance() {
14         if(_uniqueInstance == 0) {
15                 _uniqueInstance = new CurrentFile();
16         }
17         return _uniqueInstance;
18 }
19 /*********************************************************************************************/
20 CurrentFile::CurrentFile() { 
21         phylipfile = "";
22         columnfile = "";
23         listfile = "";
24         rabundfile = "";
25         sabundfile = "";
26         namefile = "";
27         groupfile = "";
28         designfile = "";
29         orderfile = "";
30         treefile = "";
31         sharedfile = "";
32         ordergroupfile = "";
33         relabundfile = "";
34         fastafile = "";
35         qualfile = "";
36         sfffile = "";
37         oligosfile = "";
38 }
39 /*********************************************************************************************/
40 CurrentFile::~CurrentFile() { 
41         _uniqueInstance = 0; 
42 }
43 /*********************************************************************************************/
44
45