QtCore/qchar.h File Reference

qchar.h File Reference
#include <QtCore/qglobal.h>

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 QDataStreamoperator<< (QDataStream &, const QChar &)
 
Q_CORE_EXPORT QDataStreamoperator>> (QDataStream &, QChar &)
 

Function Documentation

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

Definition at line 392 of file qchar.h.

392 { return c1.unicode() == c2.unicode(); }
ushort unicode() const
Definition: qchar.h:251
bool operator!= ( QChar  c1,
QChar  c2 
)
inline

Definition at line 393 of file qchar.h.

393 { return c1.unicode() != c2.unicode(); }
ushort unicode() const
Definition: qchar.h:251
bool operator<= ( QChar  c1,
QChar  c2 
)
inline

Definition at line 394 of file qchar.h.

394 { return c1.unicode() <= c2.unicode(); }
ushort unicode() const
Definition: qchar.h:251
bool operator>= ( QChar  c1,
QChar  c2 
)
inline

Definition at line 395 of file qchar.h.

395 { return c1.unicode() >= c2.unicode(); }
ushort unicode() const
Definition: qchar.h:251
bool operator< ( QChar  c1,
QChar  c2 
)
inline

Definition at line 396 of file qchar.h.

396 { return c1.unicode() < c2.unicode(); }
ushort unicode() const
Definition: qchar.h:251
bool operator> ( QChar  c1,
QChar  c2 
)
inline

Definition at line 397 of file qchar.h.

397 { return c1.unicode() > c2.unicode(); }
ushort unicode() const
Definition: qchar.h:251
Q_CORE_EXPORT QDataStream& operator<< ( QDataStream ,
const QChar  
)
Q_CORE_EXPORT QDataStream& operator>> ( QDataStream ,
QChar  
)

Go to the source code of this file.