blob: 1fe03fd57c6c21f00659ea50e84fd4d5a29c5d0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <QSettings>
namespace AOUtils
{
/**
* @brief Migrates the effects from the old format to version 2.
* @param QSettings object reference of the old effects.ini
*/
void migrateEffects(QSettings &p_fileName);
}; // namespace AOUtils
|