mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
18 lines
364 B
C
18 lines
364 B
C
|
// fake qstring.h
|
||
|
#ifndef __FAKE__QSTRING_H
|
||
|
#define __FAKE__QSTRING_H
|
||
|
|
||
|
class QString
|
||
|
{
|
||
|
public:
|
||
|
QString() {}
|
||
|
QString(const char *) {}
|
||
|
bool operator==(const QString &) { return false; }
|
||
|
|
||
|
static QString number(int) { return QString(); }
|
||
|
};
|
||
|
|
||
|
inline QString operator+(const QString &, const QString &) { return QString(); }
|
||
|
|
||
|
#endif // __FAKE__QSTRING_H
|