| 84 | } |
| 85 | |
| 86 | Value CommentsTable::AuthorAccessor(const Value& row) |
| 87 | { |
| 88 | Comment::Ptr comment = static_cast<Comment::Ptr>(row); |
| 89 | |
| 90 | if (!comment) |
| 91 | return Empty; |
| 92 | |
| 93 | return comment->GetAuthor(); |
| 94 | } |
| 95 | |
| 96 | Value CommentsTable::CommentAccessor(const Value& row) |
| 97 | { |
nothing calls this directly
no outgoing calls
no test coverage detected