QImageTextKeyLang Class Reference

QImageTextKeyLang Class Reference

#include <qimage.h>

Class Description

Definition at line 69 of file qimage.h.

Public Member Functions

 QImageTextKeyLang (const char *k, const char *l)
 
 QImageTextKeyLang ()
 
bool operator< (const QImageTextKeyLang &other) const
 
bool operator== (const QImageTextKeyLang &other) const
 
bool operator!= (const QImageTextKeyLang &other) const
 

Public Attributes

QByteArray key
 
QByteArray lang
 

Constructor & Destructor Documentation

QImageTextKeyLang ( const char *  k,
const char *  l 
)
inline

Definition at line 71 of file qimage.h.

71 : key(k), lang(l) { }
QByteArray key
Definition: qimage.h:74
QByteArray lang
Definition: qimage.h:75
QImageTextKeyLang ( )
inline

Definition at line 72 of file qimage.h.

72 { }

Member Function Documentation

bool operator< ( const QImageTextKeyLang other) const
inline

Definition at line 77 of file qimage.h.

78  { return key < other.key || (key==other.key && lang < other.lang); }
QByteArray key
Definition: qimage.h:74
QByteArray lang
Definition: qimage.h:75
bool operator== ( const QImageTextKeyLang other) const
inline

Definition at line 79 of file qimage.h.

80  { return key==other.key && lang==other.lang; }
QByteArray key
Definition: qimage.h:74
QByteArray lang
Definition: qimage.h:75
bool operator!= ( const QImageTextKeyLang other) const
inline

Definition at line 81 of file qimage.h.

82  { return !operator==(other); }
bool operator==(const QImageTextKeyLang &other) const
Definition: qimage.h:79

Member Data Documentation

Definition at line 74 of file qimage.h.

QByteArray lang

Definition at line 75 of file qimage.h.


The documentation for this class was generated from the following file: