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

18 lines
287 B
C++
Raw Normal View History

2012-07-12 09:36:34 +00:00
#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_ */