- re-enabling toString()

This commit is contained in:
Antoine Fraboulet 2005-12-26 15:53:37 +00:00
parent ce001c7aa2
commit 9b9fcfae4c
2 changed files with 2 additions and 2 deletions

View file

@ -44,6 +44,7 @@ void Turn::operator=(const Turn &iOther)
pldrack = iOther.pldrack; pldrack = iOther.pldrack;
round = iOther.round; round = iOther.round;
} }
#endif
string Turn::toString(bool iShowExtraSigns) const string Turn::toString(bool iShowExtraSigns) const
@ -56,7 +57,6 @@ string Turn::toString(bool iShowExtraSigns) const
rs = rs + m_pldrack.toString() + " " + m_round.toString(); rs = rs + m_pldrack.toString() + " " + m_round.toString();
return rs; return rs;
} }
#endif
/// Local Variables: /// Local Variables:

View file

@ -48,8 +48,8 @@ public:
#if 0 #if 0
void operator=(const Turn &iOther); void operator=(const Turn &iOther);
string toString(bool iShowExtraSigns = false) const;
#endif #endif
string toString(bool iShowExtraSigns = false) const;
private: private:
int m_num; int m_num;