/* === This file is part of Calamares - === * * SPDX-FileCopyrightText: 2014 Teo Mrnjavac * 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: 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 */