blob: 9156ec20d489fff86645480248e194ee584446f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef OPENSCAD_QHASH_H_
#define OPENSCAD_QHASH_H_
/*!
Defines a qHash for std::string.
Note that this header must be included before Qt headers (at least
before qhash.h) to take effect.
*/
#include <qglobal.h>
#include <string>
extern uint qHash(const std::string &);
#include <QHash>
#endif
|