ComboSegments brought in.

Five to go I believe.
This commit is contained in:
Jason Felds
2011-05-31 11:45:25 -04:00
parent da73396895
commit 714427f154
7 changed files with 90 additions and 99 deletions
+17
View File
@@ -89,6 +89,23 @@ bool TickcountSegment::operator<( const TickcountSegment &other ) const
return false;
}
int ComboSegment::GetCombo() const
{
return this->combo;
}
void ComboSegment::SetCombo(const int i)
{
this->combo = i;
}
bool ComboSegment::operator<( const ComboSegment &other ) const
{
LTCOMPARE(GetRow());
LTCOMPARE(GetCombo());
return false;
}
RString LabelSegment::GetLabel() const
{
return this->label;