mirror of
https://github.com/fergalmoran/flameshot.git
synced 2026-02-13 22:13:58 +00:00
18 lines
228 B
C++
18 lines
228 B
C++
#ifndef CONFIGENTERPRISE_H
|
|
#define CONFIGENTERPRISE_H
|
|
|
|
class QSettings;
|
|
|
|
class ConfigEnterprise
|
|
{
|
|
public:
|
|
ConfigEnterprise();
|
|
|
|
QSettings* settings();
|
|
|
|
private:
|
|
QSettings* m_settings;
|
|
};
|
|
|
|
#endif // CONFIGENTERPRISE_H
|