blob: 7bb4fb715479109db3053f743427976eaae4d6e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include <QObject>
#include "export.hpp"
// The class does nothing except provide a fake assignment operator for QObject
// It's meant to be used inside classes that need i18n support but are returned by value.
class OTR_COMPAT_EXPORT TR : public QObject
{
Q_OBJECT
public:
TR();
TR(const TR&);
~TR() override;
TR& operator=(const TR& other);
};
|