17 lines
294 B
C
17 lines
294 B
C
|
|
#ifndef LINE_H
|
||
|
|
#define LINE_H
|
||
|
|
#include <QPair>
|
||
|
|
#include "branch.h"
|
||
|
|
#include "./../aclinesegment.h"
|
||
|
|
class Line:public Branch
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
Line(const QPair<QString, QString> &fromTo, ACLineSegment* ac);
|
||
|
|
protected:
|
||
|
|
virtual void extract();
|
||
|
|
private:
|
||
|
|
ACLineSegment *ac;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // LINE_H
|