2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2011-06-08 18:40:35 +02:00
|
|
|
|
|
|
|
|
#include "changeauxiliarycommand.h"
|
|
|
|
|
|
2013-07-16 17:00:07 +02:00
|
|
|
#include <QDebug>
|
|
|
|
|
|
2011-06-08 18:40:35 +02:00
|
|
|
namespace QmlDesigner {
|
|
|
|
|
|
2013-07-16 17:00:07 +02:00
|
|
|
QDebug operator <<(QDebug debug, const ChangeAuxiliaryCommand &command)
|
|
|
|
|
{
|
2020-08-18 13:13:19 +02:00
|
|
|
return debug.nospace() << "ChangeAuxiliaryCommand(auxiliaryChanges: " << command.auxiliaryChanges << ")";
|
2013-07-16 17:00:07 +02:00
|
|
|
}
|
|
|
|
|
|
2011-06-08 18:40:35 +02:00
|
|
|
} // namespace QmlDesigner
|