~jibel/autopilot-qt/make-qtabstractitemview_introspection

« back to all changes in this revision

Viewing changes to driver/rootnode.h

  • Committer: Tarmac
  • Author(s): Thomi Richards
  • Date: 2013-09-16 19:29:53 UTC
  • mfrom: (70.1.15 experimental)
  • Revision ID: tarmac-20130916192953-gfi8t8ot60cvm4ea
1.4 wire protocol changes. Fixes: https://bugs.launchpad.net/bugs/1195141, https://bugs.launchpad.net/bugs/1214128.

Approved by PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
public:
14
14
    RootNode(QCoreApplication* application);
15
15
 
16
 
    virtual QVariant IntrospectNode() const;
17
 
    virtual qint64 GetObjectId() const;
 
16
    virtual NodeIntrospectionData GetIntrospectionData() const;
18
17
 
19
18
    void AddChild(QObject* child);
20
19
 
21
20
    virtual std::string GetName() const;
22
21
    virtual std::string GetPath() const;
23
 
    virtual bool MatchProperty(const std::string& name, const std::string& value) const;
24
 
    virtual xpathselect::NodeList Children() const;
 
22
    virtual xpathselect::NodeVector Children() const;
25
23
private:
26
24
    QCoreApplication* application_;
27
25
    QList<QObject*> children_;