qskinny/src/common/QskPlacementPolicy.cpp

26 lines
687 B
C++
Raw Normal View History

2022-04-08 14:46:20 +00:00
/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#include "QskPlacementPolicy.h"
#ifndef QT_NO_DEBUG_STREAM
#include <qdebug.h>
QDebug operator<<( QDebug debug, const QskPlacementPolicy policy )
{
QDebugStateSaver saver( debug );
debug.nospace();
debug << "PlacementPolicy" << '(';
debug << policy.visiblePolicy() << ", " << policy.hiddenPolicy();
debug << ')';
return debug;
}
#endif
#include "moc_QskPlacementPolicy.cpp"