| 349 | |
| 350 | int FromString(const string_view& Value, bool Ignore1001FromDropFrame = false); |
| 351 | int FromString(const char* Value, bool Ignore1001FromDropFrame = false) { return FromString(string_view(Value, strlen(Value)), Ignore1001FromDropFrame); } |
| 352 | int FromString(const std::string& Value, bool Ignore1001FromDropFrame = false) { return FromString(string_view(Value.c_str(), Value.size()), Ignore1001FromDropFrame); } |
| 353 | int FromFrames(uint64_t Value); |
| 354 | int FromFrames(int64_t Value); |
nothing calls this directly
no test coverage detected