mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-21 11:31:00 -06:00
15 lines
222 B
C++
15 lines
222 B
C++
#ifndef DOTENVFORMAT_H
|
|
#define DOTENVFORMAT_H
|
|
|
|
#include <QSettings>
|
|
|
|
class QIODevice;
|
|
|
|
class DotenvFormat
|
|
{
|
|
public:
|
|
static bool readEnvFile(QIODevice &device, QSettings::SettingsMap &map);
|
|
};
|
|
|
|
#endif // DOTENVFORMAT_H
|