You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
298 B
C++
28 lines
298 B
C++
#ifndef AOI_H
|
|
#define AOI_H
|
|
|
|
//
|
|
#include "basicgeometryoperator.h"
|
|
#include "contour.h"
|
|
|
|
|
|
//std
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
|
|
//Qt
|
|
#include <QColor>
|
|
#include <QLineF>
|
|
|
|
class aoi : public BasicGeometryOperator
|
|
{
|
|
public:
|
|
aoi();
|
|
|
|
private:
|
|
// Outline outline;
|
|
};
|
|
|
|
#endif // AOI_H
|