]> 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         m = MothurOut::getInstance();
22         
23         phylipfile = "";
24         columnfile = "";
25         listfile = "";
26         rabundfile = "";
27         sabundfile = "";
28         namefile = "";
29         groupfile = "";
30         designfile = "";
31         orderfile = "";
32         treefile = "";
33         sharedfile = "";
34         ordergroupfile = "";
35         relabundfile = "";
36         fastafile = "";
37         qualfile = "";
38         sfffile = "";
39         oligosfile = "";
40 }
41 /*********************************************************************************************/
42 CurrentFile::~CurrentFile() { 
43         _uniqueInstance = 0; 
44 }
45 /*********************************************************************************************/
46
47