/*! * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file display.h * \author (last) Behrouz NematiPour * \date (last) 24-Oct-2019 * \author (original) Behrouz NematiPour * \date (original) 24-Sep-2019 * */ #pragma once #include namespace Configuration { /*! * \brief display brightness and configuration * \details The display class The Display class controls the display brightness and any other later required display configuration. */ class display : public QObject { Q_OBJECT public: explicit display(QObject *parent = nullptr); signals: public slots: }; }