| 19 | #include "movecommenttoken.h" |
| 20 | |
| 21 | MoveCommentToken::MoveCommentToken(int ply, const QString& text) |
| 22 | : PgnToken(), |
| 23 | m_ply(ply), |
| 24 | m_text(text) |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | QString MoveCommentToken::toString() const |
| 29 | { |
nothing calls this directly
no outgoing calls
no test coverage detected