forked from qt-creator/qt-creator
Fixes: QTCREATORBUG-22033 Change-Id: If37517bb091438e70c5af5102bf833ed46d0c951 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: David Schulz <david.schulz@qt.io>
48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
%{JS: Cpp.licenseTemplate()}\
|
|
#include "%{JS: Util.relativeFilePath('%{Path}/%{HdrFileName}', '%{Path}' + '/' + Util.path('%{SrcFileName}'))}"
|
|
%{JS: Cpp.openNamespaces('%{Class}')}
|
|
@if '%{IncludeQSharedData}'
|
|
class %{CN}Data : public QSharedData
|
|
{
|
|
public:
|
|
|
|
};
|
|
|
|
@endif
|
|
@if '%{Base}' === 'QObject'
|
|
%{CN}::%{CN}(QObject *parent)
|
|
: QObject{parent}%{JS: ('%{SharedDataInit}') ? ', %{SharedDataInit}' : ''}
|
|
@elsif '%{Base}' === 'QWidget' || '%{Base}' === 'QMainWindow'
|
|
%{CN}::%{CN}(QWidget *parent)
|
|
: %{Base}{parent}%{JS: ('%{SharedDataInit}') ? ', %{SharedDataInit}' : ''}
|
|
@elsif %{JS: Cpp.hasQObjectParent('%{Base}')}
|
|
%{CN}::%{CN}(QObject *parent)
|
|
: %{Base}{parent}%{JS: ('%{SharedDataInit}') ? ', %{SharedDataInit}' : ''}
|
|
@else
|
|
%{CN}::%{CN}()%{JS: ('%{SharedDataInit}') ? ' : %{SharedDataInit}' : ''}
|
|
@endif
|
|
{
|
|
|
|
}
|
|
@if '%{IncludeQSharedData}'
|
|
|
|
%{CN}::%{CN}(const %{CN} &rhs)
|
|
: data{rhs.data}
|
|
{
|
|
|
|
}
|
|
|
|
%{CN} &%{CN}::operator=(const %{CN} &rhs)
|
|
{
|
|
if (this != &rhs)
|
|
data.operator=(rhs.data);
|
|
return *this;
|
|
}
|
|
|
|
%{CN}::~%{CN}()
|
|
{
|
|
|
|
}
|
|
@endif
|
|
%{JS: Cpp.closeNamespaces('%{Class}')}\
|