/*! * * 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 sound.cpp * \author (last) Behrouz NematiPour * \date (last) 16-Jan-2020 * \author (original) Behrouz NematiPour * \date (original) 24-Sep-2019 * */ #include "sound.h" using namespace Configuration; /*! * \brief sound::sound * \details Constructor * \param parent - QObject parent owner object. * Qt handles the children destruction by their parent objects life-cycle. */ sound::sound(QObject *parent) : QObject(parent) { }