This repository has been archived on 2021-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
prpa/src/configuration.hh
2012-07-12 11:36:34 +02:00

18 lines
287 B
C++

#ifndef CONFIGURATION_HH_
# define CONFIGURATION_HH_
# include <string>
# include <list>
class Configuration
{
public:
std::list<std::string> input;
std::string output;
std::string codec;
std::list<std::string> filters;
private:
};
#endif /* !CONFIGURATION_HH_ */