diff options
author | Max Kellermann <max@duempel.org> | 2013-01-24 19:14:40 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-26 01:24:01 +0100 |
commit | 0273cd44b0b50d5d320ce88cc1472e0d8ee8e529 (patch) | |
tree | 7c493850ab07deddd637ca0b5e8b3476e40a68fc /test | |
parent | 3203a7dd8ce8db6afcc54d68d63b4f4af7dc4c7f (diff) | |
download | mpd-0273cd44b0b50d5d320ce88cc1472e0d8ee8e529.tar.gz mpd-0273cd44b0b50d5d320ce88cc1472e0d8ee8e529.tar.xz mpd-0273cd44b0b50d5d320ce88cc1472e0d8ee8e529.zip |
input_stream: forward-declare the struct
Hide the definition from C code, to prepare the transition to C++.
Diffstat (limited to 'test')
-rw-r--r-- | test/dump_text_file.cxx | 2 | ||||
-rw-r--r-- | test/read_tags.cxx | 2 | ||||
-rw-r--r-- | test/run_input.cxx | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/test/dump_text_file.cxx b/test/dump_text_file.cxx index 28a645a4f..dc3f9d6a8 100644 --- a/test/dump_text_file.cxx +++ b/test/dump_text_file.cxx @@ -20,7 +20,7 @@ #include "config.h" #include "IOThread.hxx" #include "InputInit.hxx" -#include "input_stream.h" +#include "InputStream.hxx" #include "conf.h" #include "stdbin.h" diff --git a/test/read_tags.cxx b/test/read_tags.cxx index f971c5ce1..a634d72b6 100644 --- a/test/read_tags.cxx +++ b/test/read_tags.cxx @@ -24,7 +24,7 @@ extern "C" { } #include "decoder_api.h" #include "InputInit.hxx" -#include "input_stream.h" +#include "InputStream.hxx" #include "audio_format.h" extern "C" { #include "tag_ape.h" diff --git a/test/run_input.cxx b/test/run_input.cxx index 55f60b9fe..b215eefea 100644 --- a/test/run_input.cxx +++ b/test/run_input.cxx @@ -23,6 +23,7 @@ #include "tag.h" #include "conf.h" #include "input_stream.h" +#include "InputStream.hxx" #include "InputInit.hxx" #include "IOThread.hxx" |