|
Eric Oulashin's C++ Audio Mixer 1.0
|
#include <iostream>#include <string>#include <fstream>#include <vector>#include <filesystem>#include <memory>#include "WAVFile.h"#include "FLACFile.h"#include "AudioFileTools.h"#include "AudioFileResultType.h"
Classes | |
| struct | ProgOptions |
| struct | AudioFileMixOptions |
Functions | |
| void | showProgramHelp () |
| ProgOptions | parseCommandLine (int argc, char *argv[]) |
| AudioFileMixOptions | readAudioFileList (const string &pFilename, vector< string > &pErrorMsgs, vector< string > &pNonexistentFiles) |
| int | main (int argc, char *argv[]) |
| int main | ( | int | argc, |
| char * | argv[] | ||
| ) |
| ProgOptions parseCommandLine | ( | int | argc, |
| char * | argv[] | ||
| ) |
References ProgOptions::audioFileListFilename, showProgramHelp(), and ProgOptions::verbose.
Referenced by main().
| AudioFileMixOptions readAudioFileList | ( | const string & | pFilename, |
| vector< string > & | pErrorMsgs, | ||
| vector< string > & | pNonexistentFiles | ||
| ) |
References AudioFileMixOptions::inputFilenames, and AudioFileMixOptions::outputFilename.
Referenced by main().
| void showProgramHelp | ( | ) |
Referenced by main(), and parseCommandLine().