| 123 | } |
| 124 | |
| 125 | Data::Thread *Entry::asThread() { |
| 126 | return (_flags & Flag::IsThread) |
| 127 | ? static_cast<Data::Thread*>(this) |
| 128 | : nullptr; |
| 129 | } |
| 130 | |
| 131 | Data::ForumTopic *Entry::asTopic() { |
| 132 | return (_flags & Flag::IsForumTopic) |
no outgoing calls
no test coverage detected