]> git.sesse.net Git - kdenlive/blob - src/definitions.cpp
2112faf99e102922497a15f4d49aae8de123e6c9
[kdenlive] / src / definitions.cpp
1 #include "definitions.h"
2
3 QDebug operator << (QDebug qd, const ItemInfo &info)
4 {
5     qd << "ItemInfo " << &info;
6     qd << "\tTrack" << info.track;
7     qd << "\tStart pos: " << info.startPos.toString();
8     qd << "\tEnd pos: " << info.endPos.toString();
9     qd << "\tCrop start: " << info.cropStart.toString();
10     qd << "\tCrop duration: " << info.cropDuration.toString();
11     return qd.maybeSpace();
12 }