Update mussa to build on ubuntu 10.04 with qt 4.6.2 +boost 1.40.0.1
[mussa.git] / qui / mussa_setup_dialog / SetupInfo.hpp
1 #ifndef _SETUP_INFO_H_
2 #define _SETUP_INFO_H_
3
4 #include <string>
5
6 class SetupInfo
7 {
8 public:
9   SetupInfo(std::string seqName,
10       std::string seqFile, 
11             std::string annotFile,
12             int fastaIndex,
13             int subSeqStart=0, 
14             int subSeqEnd=0);
15
16   std::string getName() { return seqName; };
17   std::string getSeqFile() { return seqFile; };
18   std::string getAnnotFile() { return annotFile; };
19   int getFastaIndex() { return fastaIndex; };
20   int getSubSeqStart() { return subSeqStart; };
21   int getSubSeqEnd() { return subSeqEnd; };
22
23 private:
24   std::string seqName;
25   std::string seqFile;
26   std::string annotFile;
27   int fastaIndex;
28   int subSeqStart;
29   int subSeqEnd;
30
31 };
32
33 #endif