diff options
author | Max Kellermann <max@duempel.org> | 2014-08-27 19:11:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-28 06:42:19 +0200 |
commit | 39529204925c95c1ae38fee25df334f3c3a1a4a7 (patch) | |
tree | 80265280e7557858814158b7ea0a6f5f65be8847 /src/protocol/ArgParser.hxx | |
parent | c2001a725978b665f0b22a4ad3865293754efd38 (diff) | |
download | mpd-39529204925c95c1ae38fee25df334f3c3a1a4a7.tar.gz mpd-39529204925c95c1ae38fee25df334f3c3a1a4a7.tar.xz mpd-39529204925c95c1ae38fee25df334f3c3a1a4a7.zip |
Playlist: use std::chrono::duration for Seek*()
Diffstat (limited to '')
-rw-r--r-- | src/protocol/ArgParser.hxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/protocol/ArgParser.hxx b/src/protocol/ArgParser.hxx index f7f9531d0..0f79e7ab2 100644 --- a/src/protocol/ArgParser.hxx +++ b/src/protocol/ArgParser.hxx @@ -25,6 +25,8 @@ #include <stdint.h> class Client; +class SongTime; +class SignedSongTime; bool check_uint32(Client &client, uint32_t *dst, const char *s); @@ -45,4 +47,10 @@ check_bool(Client &client, bool *value_r, const char *s); bool check_float(Client &client, float *value_r, const char *s); +bool +ParseCommandArg(Client &client, SongTime &value_r, const char *s); + +bool +ParseCommandArg(Client &client, SignedSongTime &value_r, const char *s); + #endif |