diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-11-12 00:42:22 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-11-12 00:42:22 (GMT) |
commit | 4e3f88c8b1d74b720bf3e17f9bdedf84a9748b3d (patch) | |
tree | c23b51ac0a1a244a0f18d287f0feebb20268eefb /tools/qdoc3 | |
parent | 49cc2d35d7da4a78d696503930720e88a6403722 (diff) | |
parent | a4053a6e7a9a686433dc4814a5b52da3bc96969f (diff) | |
download | Qt-4e3f88c8b1d74b720bf3e17f9bdedf84a9748b3d.zip Qt-4e3f88c8b1d74b720bf3e17f9bdedf84a9748b3d.tar.gz Qt-4e3f88c8b1d74b720bf3e17f9bdedf84a9748b3d.tar.bz2 |
Merge branch '4.6' of git://scm.dev.nokia.troll.no/qt/qt into kinetic-declarativeui
Diffstat (limited to 'tools/qdoc3')
-rw-r--r-- | tools/qdoc3/node.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/tools/qdoc3/node.h b/tools/qdoc3/node.h index 7fd3897..dbdc174 100644 --- a/tools/qdoc3/node.h +++ b/tools/qdoc3/node.h @@ -425,36 +425,6 @@ class QmlPropertyNode : public LeafNode Trool wri; bool att; }; - -class QmlSignalNode : public LeafNode -{ - public: - QmlSignalNode(QmlClassNode* parent, - const QString& name, - bool attached); - virtual ~QmlSignalNode() { } - - const QString& element() const { return parent()->name(); } - bool isAttached() const { return att; } - - private: - bool att; -}; - -class QmlMethodNode : public LeafNode -{ - public: - QmlMethodNode(QmlClassNode* parent, - const QString& name, - bool attached); - virtual ~QmlMethodNode() { } - - const QString& element() const { return parent()->name(); } - bool isAttached() const { return att; } - - private: - bool att; -}; #endif class EnumItem |