AppleWin/source/frontends/qapple/configuration.h
Andrea Odetti b5e5199eeb Move all configurations to a separate file.
Still not ideal as it is not straightforward to add options to places like the Video class.


Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2017-11-21 16:10:58 +00:00

15 lines
407 B
C++

#ifndef CONFIGURATION_H
#define CONFIGURATION_H
#include <memory>
#include "preferences.h"
class QGamepad;
QString getScreenshotTemplate();
Preferences::Data getCurrentOptions(const std::shared_ptr<QGamepad> & gamepad);
void setNewOptions(const Preferences::Data & currentOptions, const Preferences::Data & newOptions,
std::shared_ptr<QGamepad> & gamepad);
#endif // CONFIGURATION_H