KHTML
SMILTime.h
Go to the documentation of this file.
58 inline bool operator==(const SMILTime& a, const SMILTime& b) { return a.isFinite() && a.value() == b.value(); }
62 inline bool operator>=(const SMILTime& a, const SMILTime& b) { return a.value() > b.value() || operator==(a, b); }
63 inline bool operator<=(const SMILTime& a, const SMILTime& b) { return a.value() < b.value() || operator==(a, b); }
65 inline SMILTime max(const SMILTime& a, const SMILTime& b) { return std::max(a.value(), b.value()); }
66 inline SMILTime min(const SMILTime& a, const SMILTime& b) { return std::min(a.value(), b.value()); }
69 // So multiplying times does not make too much sense but SMIL defines it for duration * repeatCount
bool operator<(const KEntryKey &k1, const KEntryKey &k2)
bool operator!=(const FloatPoint &a, const FloatPoint &b)
Definition: FloatPoint.h:135
FloatSize operator-(const FloatPoint &a, const FloatPoint &b)
Definition: FloatPoint.h:120
FloatPoint operator+(const FloatPoint &a, const FloatSize &b)
Definition: FloatPoint.h:115
bool operator==(const FloatPoint &a, const FloatPoint &b)
Definition: FloatPoint.h:130
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:26:19 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:26:19 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.