cimforreduceloss/testHasttable/element/line.h

18 lines
331 B
C++

#ifndef LINE_H
#define LINE_H
#include <QObject>
#include <QPair>
#include "branch.h"
#include "./../aclinesegment.h"
class Line:public Branch
{
public:
Line(const QPair<QString, QString> &fromTo, ACLineSegment* ac,QObject* parent=0);
protected:
virtual void extract();
private:
ACLineSegment *ac;
};
#endif // LINE_H