mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
16 lines
280 B
C
16 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
|