mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
21 lines
458 B
C++
21 lines
458 B
C++
|
/*
|
||
|
* SPDX-FileCopyrightText: 2014 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#include "breezegenericdata.h"
|
||
|
|
||
|
namespace Breeze
|
||
|
{
|
||
|
//______________________________________________
|
||
|
GenericData::GenericData(QObject *parent, QWidget *target, int duration)
|
||
|
: AnimationData(parent, target)
|
||
|
, _animation(new Animation(duration, this))
|
||
|
, _opacity(0)
|
||
|
{
|
||
|
setupAnimation(_animation, "opacity");
|
||
|
}
|
||
|
|
||
|
}
|