diff options
Diffstat (limited to 'utils/makemhr/loaddef.h')
-rw-r--r-- | utils/makemhr/loaddef.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/makemhr/loaddef.h b/utils/makemhr/loaddef.h index 05862228..34fbb832 100644 --- a/utils/makemhr/loaddef.h +++ b/utils/makemhr/loaddef.h @@ -1,12 +1,13 @@ #ifndef LOADDEF_H #define LOADDEF_H -#include <stdio.h> +#include <istream> #include "makemhr.h" -bool LoadDefInput(FILE *fp, const char *startbytes, size_t startbytecount, const char *filename, - const uint fftSize, const uint truncSize, const ChannelModeT chanMode, HrirDataT *hData); +bool LoadDefInput(std::istream &istream, const char *startbytes, std::streamsize startbytecount, + const char *filename, const uint fftSize, const uint truncSize, const ChannelModeT chanMode, + HrirDataT *hData); #endif /* LOADDEF_H */ |