equal
deleted
inserted
replaced
40 Q_OBJECT |
40 Q_OBJECT |
41 |
41 |
42 public: |
42 public: |
43 |
43 |
44 // constructors |
44 // constructors |
45 HWTeam(const QString & teamname = QString(), QObject * parent = 0); |
45 HWTeam(const QString & teamname = QString("Team"), QObject * parent = 0); |
46 HWTeam(const QStringList& strLst, QObject * parent = 0); |
46 HWTeam(const QStringList& strLst, QObject * parent = 0); |
47 HWTeam(const HWTeam & other); |
47 HWTeam(const HWTeam & other); |
48 ~HWTeam(); |
48 ~HWTeam(); |
49 |
49 |
50 // file operations |
50 // file operations |
87 |
87 |
88 // increments for statistical info |
88 // increments for statistical info |
89 void incRounds(); |
89 void incRounds(); |
90 void incWins(); |
90 void incWins(); |
91 |
91 |
|
92 flib_team * toFlibTeam(); |
|
93 |
92 // comparison operators |
94 // comparison operators |
93 bool operator == (const HWTeam& t1) const; |
95 bool operator == (const HWTeam& t1) const; |
94 bool operator < (const HWTeam& t1) const; |
96 bool operator < (const HWTeam& t1) const; |
95 HWTeam & operator = (const HWTeam & other); |
97 HWTeam & operator = (const HWTeam & other); |
96 |
98 |