~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to share/qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.h

  • 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:
39
39
class ChangeNodeSourceCommand
40
40
{
41
41
    friend QDataStream &operator>>(QDataStream &in, ChangeNodeSourceCommand &command);
 
42
    friend QDebug operator <<(QDebug debug, const ChangeNodeSourceCommand &command);
 
43
 
42
44
public:
43
45
    ChangeNodeSourceCommand();
44
46
    explicit ChangeNodeSourceCommand(qint32 instanceId, const QString &nodeSource);
53
55
QDataStream &operator<<(QDataStream &out, const ChangeNodeSourceCommand &command);
54
56
QDataStream &operator>>(QDataStream &in, ChangeNodeSourceCommand &command);
55
57
 
 
58
QDebug operator <<(QDebug debug, const ChangeNodeSourceCommand &command);
 
59
 
56
60
} // namespace QmlDesigner
57
61
 
58
62
Q_DECLARE_METATYPE(QmlDesigner::ChangeNodeSourceCommand)