qchar.h File Reference

#include <QtCore/qglobal.h>

Go to the source code of this file.

Classes

struct   QLatin1Char
class   QChar

Functions

  Q_DECLARE_TYPEINFO (QChar, Q_MOVABLE_TYPE)
bool  operator== (QChar c1, QChar c2)
bool  operator!= (QChar c1, QChar c2)
bool  operator<= (QChar c1, QChar c2)
bool  operator>= (QChar c1, QChar c2)
bool  operator< (QChar c1, QChar c2)
bool  operator> (QChar c1, QChar c2)
Q_CORE_EXPORT QDataStream operator<< (QDataStream &, const QChar &)
Q_CORE_EXPORT QDataStream operator>> (QDataStream &, QChar &)

Function Documentation

Q_DECLARE_TYPEINFO ( QChar  ,
Q_MOVABLE_TYPE   
)
bool operator== ( QChar  c1,
QChar  c2 
) [inline]

Definition at line 386 of file qchar.h.

{ return c1.unicode() == c2.unicode(); }
bool operator!= ( QChar  c1,
QChar  c2 
) [inline]

Definition at line 387 of file qchar.h.

{ return c1.unicode() != c2.unicode(); }
bool operator<= ( QChar  c1,
QChar  c2 
) [inline]

Definition at line 388 of file qchar.h.

{ return c1.unicode() <= c2.unicode(); }
bool operator>= ( QChar  c1,
QChar  c2 
) [inline]

Definition at line 389 of file qchar.h.

{ return c1.unicode() >= c2.unicode(); }
bool operator< ( QChar  c1,
QChar  c2 
) [inline]

Definition at line 390 of file qchar.h.

{ return c1.unicode() < c2.unicode(); }
bool operator> ( QChar  c1,
QChar  c2 
) [inline]

Definition at line 391 of file qchar.h.

{ return c1.unicode() > c2.unicode(); }
Q_CORE_EXPORT QDataStream& operator<< ( QDataStream ,
const QChar  
)
Q_CORE_EXPORT QDataStream& operator>> ( QDataStream ,
QChar  
)