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.cpp
1 #include "qui/mussa_setup_dialog/SetupInfo.hpp"
2
3 SetupInfo::SetupInfo(
4     std::string newName,
5     std::string newSeqFile, 
6     std::string newAnnotFile,
7           int newFastaIndex, 
8     int newSubSeqStart, 
9     int newSubSeqEnd
10     ) 
11   : seqName(newName),
12     seqFile(newSeqFile),
13     annotFile(newAnnotFile),
14     fastaIndex(newFastaIndex),
15     subSeqStart(newSubSeqStart),
16     subSeqEnd(newSubSeqEnd)
17 {
18
19 }