13 lines
151 B
C++
13 lines
151 B
C++
|
#ifndef SETTINGS_HPP
|
||
|
#define SETTINGS_HPP
|
||
|
|
||
|
#include <QDir>
|
||
|
#include <QSettings>
|
||
|
|
||
|
namespace settings
|
||
|
{
|
||
|
QSettings &settings();
|
||
|
}
|
||
|
|
||
|
#endif // SETTINGS_HPP
|