Lines Matching refs:Measure
24 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(Measure)
26 Measure::Measure() : unit(nullptr) {}
28 Measure::Measure(const Formattable& _number, MeasureUnit* adoptedUnit,
37 Measure::Measure(const Measure& other) :
42 Measure& Measure::operator=(const Measure& other) {
55 Measure *Measure::clone() const {
56 return new Measure(*this);
59 Measure::~Measure() {
63 bool Measure::operator==(const UObject& other) const {
70 const Measure &m = static_cast<const Measure&>(other);