Qx v0.5.7
Qt Extensions Library
Loading...
Searching...
No Matches
qx-char.h
1#ifndef QX_CHAR_H
2#define QX_CHAR_H
3
4// Shared Lib Support
5#include "qx/core/qx_core_export.h"
6
7// Qt Includes
8#include <QChar>
9
10namespace Qx
11{
12
13class QX_CORE_EXPORT Char
14{
15//-Class Functions----------------------------------------------------------------------------------------------
16public:
17 static bool isHexNumber(QChar hexNum);
18 static bool isSpace(const QChar& ch);
19 static bool isSpace(char chr);
20 static bool isSpace(unsigned char ch);
21 static bool isSpace(signed char ch);
22 static bool isSpace(wchar_t ch);
23 static int compare(QChar cOne, QChar cTwo, Qt::CaseSensitivity cs = Qt::CaseSensitive);
24};
25
26}
27
28#endif // QX_CHAR_H
The Char class is a collection of static functions pertaining to character types.
Definition qx-char.h:14
The Qx namespace is the main namespace through which all non-global functionality of the Qx library i...
Definition qx-processwaiter.cpp:5
CaseSensitivity