replace TextFile references with LineReader

This commit is contained in:
Max Kellermann
2021-12-03 14:16:32 +01:00
parent f9c4d88b12
commit 8681a3d74c
14 changed files with 33 additions and 31 deletions

View File

@@ -28,7 +28,7 @@
struct StateFileConfig;
struct playlist;
class PlayerControl;
class TextFile;
class LineReader;
class BufferedOutputStream;
class SongLoader;
@@ -38,7 +38,7 @@ playlist_state_save(BufferedOutputStream &os, const playlist &playlist,
bool
playlist_state_restore(const StateFileConfig &config,
const char *line, TextFile &file,
const char *line, LineReader &file,
const SongLoader &song_loader,
playlist &playlist, PlayerControl &pc);