/*! * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * \copyright \n * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, \n * IN PART OR IN WHOLE, \n * WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. \n * * \file display.h * \date 2019/09/30 * \author Behrouz NematiPour * */ #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: }; }