mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-31 17:15:14 +01:00
10 lines
239 B
C++
10 lines
239 B
C++
|
#include "margins.h"
|
||
|
|
||
|
|
||
|
QDebug operator<<(QDebug dbg, const MarginsF &margins)
|
||
|
{
|
||
|
dbg.nospace() << "MarginsF(" << margins.left() << ", " << margins.top()
|
||
|
<< ", " << margins.right() << margins.bottom() << ")";
|
||
|
return dbg.maybeSpace();
|
||
|
}
|