20 lines
351 B
C++
20 lines
351 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);
|
|
double length;
|
|
ACLineSegment *ac;
|
|
protected:
|
|
virtual void extract();
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // LINE_H
|