mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
15 lines
234 B
C
15 lines
234 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
// Dummy object for stats-module related translations
|
||
|
|
||
|
#ifndef STATS_TRANSLATIONS_H
|
||
|
#define STATS_TRANSLATIONS_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class StatsTranslations : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
};
|
||
|
|
||
|
#endif
|