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