TimeMicros::fromString()

and improve the cue position editor a bit
This commit is contained in:
tildearrow 2025-10-31 03:42:43 -05:00
parent 3516245d2e
commit e8aeb45a12
6 changed files with 259 additions and 14 deletions

View file

@ -110,7 +110,7 @@ struct TimeMicros {
* @return formatted TimeMicros.
*/
String toString(signed char prec=6, TATimeFormats hms=TA_TIME_FORMAT_SECONDS);
static TimeMicros fromString(String s);
static TimeMicros fromString(const String& s);
TimeMicros(int s, int u):
seconds(s), micros(u) {}