summaryrefslogblamecommitdiffstats
path: root/gettextfromc.h
blob: f94f1192ca5525c3e4ff858d76230c48ca22e7eb (plain) (tree)
1
2
3
4
5
6
7
8
9
                      
 
                
 
                                                   
 
                                            
                                        
                                                
                         
                                                       
  
                        
#ifndef GETTEXTFROMC_H
#define GETTEXTFROMC_H

#include <QHash>

extern "C" const char *trGettext(const char *text);

class gettextFromC {
	Q_DECLARE_TR_FUNCTIONS(gettextFromC)
public:
	static gettextFromC *instance();
	const char *trGettext(const char *text);
	void reset(void);
	QHash<QByteArray, QByteArray> translationCache;
};

#endif // GETTEXTFROMC_H