Home | History | Annotate | Download | only in xmllite

Lines Matching refs:QName

12 // Default libjingle's implementation of QName class is not threadsafe. This
14 class QName
17 QName();
18 QName(const std::string & ns, const std::string & local);
19 QName(bool add, const std::string & ns, const std::string & local);
20 explicit QName(const std::string & mergedOrLocal);
25 int Compare(const QName & other) const;
26 bool operator==(const QName & other) const;
27 bool operator!=(const QName & other) const { return !operator==(other); }
28 bool operator<(const QName & other) const { return Compare(other) < 0; }