mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
15 lines
280 B
C++
15 lines
280 B
C++
|
|
#ifndef KENTITIES_H
|
|
#define KENTITIES_H
|
|
|
|
struct entity {
|
|
const char* name;
|
|
int code;
|
|
};
|
|
class EntitiesHash {
|
|
public:
|
|
// Not inlined for non-GCC compilers
|
|
static const struct entity *kde_findEntity (register const char *str, register unsigned int len);
|
|
};
|
|
|
|
#endif
|