00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef OUTPUTNODE_H
00023 #define OUTPUTNODE_H
00024
00025 #include "node.h"
00026
00027 #ifndef DOXYGEN_IGNORE_THIS
00028
00029 class OutputNode : public Node
00030 {
00031
00032 public:
00033 OutputNode(ItemProperties item, QString name, uint id, SlateWindow *wind, QGraphicsItem * parent = 0, QGraphicsScene * scene = 0);
00034 void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
00035
00036 protected:
00037 int insertPos() const;
00038 };
00039
00040 #endif
00041 #endif