Progress towards MussaSetupDialog (Currently will cause crash! Be warned!)
[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 seqFile, 
10             std::string annotFile,
11             int fastaIndex,
12             int subSeqStart=0, 
13             int subSeqEnd=0);
14
15   std::string getSeqFile() { return seqFile; };
16   std::string getAnnotFile() { return annotFile; };
17   int getFastaIndex() { return fastaIndex; };
18   int getSubSeqStart() { return subSeqStart; };
19   int getSubSeqEnd() { return subSeqEnd; };
20
21 private:
22   std::string seqFile;
23   std::string annotFile;
24   int fastaIndex;
25   int subSeqStart;
26   int subSeqEnd;
27
28 };
29
30 #endif