kdelibs/khtml/kentities.h
Ivailo Monev 39f1e04295 generic: add back khtml and kjs with some changes
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2015-11-09 23:23:53 +02:00

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