/* * Vocoder * © 2012 Achim Settelmeier * * structure that stores the command line options */ #ifndef __OPTIONS_H__ #define __OPTIONS_H__ #include #include "types.h" struct options_t{ std::string formantFile; std::string carrierFile; std::string outputFile; double volume; nframes_t fps; }; #endif