| 22 | // ================= |
| 23 | |
| 24 | bool AbstractAnnotation::operator==(const AbstractAnnotation & o) const |
| 25 | { |
| 26 | return (type() == o.type() && |
| 27 | rect() == o.rect() && |
| 28 | contents() == o.contents() && |
| 29 | page() == o.page() && |
| 30 | name() == o.name() && |
| 31 | lastModified() == o.lastModified() && |
| 32 | flags() == o.flags() && |
| 33 | color() == o.color()); |
| 34 | } |
| 35 | |
| 36 | Markup::~Markup() |
| 37 | { |
nothing calls this directly
no test coverage detected