/*! * * 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 sound.cpp * \date 2019/09/30 * \author Behrouz NematiPour * */ #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) { }