calamares/src/modules/locale/SetTimezoneJob.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
630 B
C
Raw Normal View History

/* === This file is part of Calamares - <https://calamares.io> ===
*
2020-08-22 01:19:58 +02:00
* SPDX-FileCopyrightText: 2014 Teo Mrnjavac <teo@kde.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Calamares is Free Software: see the License-Identifier above.
*
*/
#ifndef SETTIMEZONEJOB_H
#define SETTIMEZONEJOB_H
#include "Job.h"
class SetTimezoneJob : public Calamares::Job
{
Q_OBJECT
public:
2019-09-07 16:58:37 +02:00
SetTimezoneJob( const QString& region, const QString& zone );
QString prettyName() const override;
Calamares::JobResult exec() override;
private:
QString m_region;
QString m_zone;
};
#endif /* SETTIMEZONEJOB_H */