00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef SINCLINK_H
00023 #define SINCLINK_H
00024
00025 #include "link.h"
00026
00027 #ifndef DOXYGEN_IGNORE_THIS
00028
00029 class SincLink : public Link
00030 {
00031 public:
00032 SincLink(Node *fromNode, QString fromProp, Node *toNode, QString toProp, QGraphicsItem * parent = 0, QGraphicsScene * scene = 0);
00033 };
00034
00035 #endif
00036 #endif