| 47 | } |
| 48 | |
| 49 | String toString() const |
| 50 | { |
| 51 | String s; |
| 52 | s += name(); |
| 53 | s += ": interval = "; |
| 54 | s += static_cast<const ApiDef*>(this)->getInterval(); |
| 55 | s += ", ticks = "; |
| 56 | s += static_cast<const ApiDef*>(this)->ticks(); |
| 57 | return s; |
| 58 | } |
| 59 | |
| 60 | operator String() const |
| 61 | { |
nothing calls this directly
no test coverage detected