QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RPainterPathSource.h
Go to the documentation of this file.
1 #ifndef RPAINTERPATHSOURCE_H
2 #define RPAINTERPATHSOURCE_H
3 
4 #include <QList>
5 
6 #include "RPainterPath.h"
7 
16 public:
17  virtual ~RPainterPathSource() {}
18  virtual QList<RPainterPath> getPainterPaths(bool draft = false) const = 0;
19 };
20 
24 Q_DECLARE_METATYPE(QSharedPointer<RPainterPathSource>*)
25 
26 #endif