vocoder-cli/src/options.h
2023-01-08 16:58:00 +01:00

26 lines
349 B
C++

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