~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to share/qtcreator/qml/qmlpuppet/commands/createinstancescommand.cpp

  • Committer: Timo Jyrinki
  • Date: 2013-11-15 12:25:23 UTC
  • mfrom: (1.1.28)
  • Revision ID: timo.jyrinki@canonical.com-20131115122523-i2kyamsu4gs2mu1m
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#include "createinstancescommand.h"
31
31
 
32
32
#include <QDataStream>
 
33
#include <QDebug>
33
34
 
34
35
namespace QmlDesigner {
35
36
 
61
62
    return in;
62
63
}
63
64
 
 
65
QDebug operator <<(QDebug debug, const CreateInstancesCommand &command)
 
66
{
 
67
    return debug.nospace() << "CreateInstancesCommand(" << command.instances() << ")";
 
68
}
 
69
 
64
70
} // namespace QmlDesigner