diff options
author | Max Kellermann <max@duempel.org> | 2013-01-06 14:55:35 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-06 18:59:33 +0100 |
commit | e202b407ec18570ad54a04c64341f654b447fb31 (patch) | |
tree | 5389f1a2fbbaa4791e986620e9f23ee4c9bc2f2c /src/Partition.hxx | |
parent | 2cc89e60ccf4337b1956a4295cd3c3f71e91f2aa (diff) | |
download | mpd-e202b407ec18570ad54a04c64341f654b447fb31.tar.gz mpd-e202b407ec18570ad54a04c64341f654b447fb31.tar.xz mpd-e202b407ec18570ad54a04c64341f654b447fb31.zip |
Playlist: add constructor and destructor
Diffstat (limited to 'src/Partition.hxx')
-rw-r--r-- | src/Partition.hxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/Partition.hxx b/src/Partition.hxx index b91a4b6f9..a3b9e4625 100644 --- a/src/Partition.hxx +++ b/src/Partition.hxx @@ -35,12 +35,8 @@ struct Partition { Partition(unsigned max_length, unsigned buffer_chunks, unsigned buffered_before_play) - :pc(buffer_chunks, buffered_before_play) { - playlist_init(&playlist, max_length); - } - - ~Partition() { - playlist_finish(&playlist); + :playlist(max_length), + pc(buffer_chunks, buffered_before_play) { } }; |