blob: 7d7bca14252707cd1e656b09c0fe8c4d9b1c215a (
plain) (
tree)
|
|
#ifndef GETTEXTFROMC_H
#define GETTEXTFROMC_H
#include <QHash>
extern "C" const char *gettext(const char *text);
class gettextFromC
{
Q_DECLARE_TR_FUNCTIONS(gettextFromC)
public:
static gettextFromC *instance();
const char *gettext(const char *text);
void reset(void);
QHash <const char *, QByteArray> translationCache;
};
#endif // GETTEXTFROMC_H
|