qskinny/src/controls/QskAnimationHint.cpp

25 lines
615 B
C++

/******************************************************************************
* QSkinny - Copyright (C) The authors
* SPDX-License-Identifier: BSD-3-Clause
*****************************************************************************/
#include "QskAnimationHint.h"
#ifndef QT_NO_DEBUG_STREAM
#include <qdebug.h>
QDebug operator<<( QDebug debug, const QskAnimationHint& hint )
{
QDebugStateSaver saver( debug );
debug.nospace();
debug << "AnimationHint" << '(';
debug << hint.duration << ',' << hint.type << ',' << hint.updateFlags;
debug << ')';
return debug;
}
#endif