mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
b56dd13add
No more C source files, no more necessity to use C-linkage. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
13 lines
242 B
C++
13 lines
242 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef GETTEXTFROMC_H
|
|
#define GETTEXTFROMC_H
|
|
|
|
#include <QCoreApplication>
|
|
|
|
const char *trGettext(const char *text);
|
|
|
|
class gettextFromC {
|
|
Q_DECLARE_TR_FUNCTIONS(gettextFromC)
|
|
};
|
|
|
|
#endif // GETTEXTFROMC_H
|