mirror of https://github.com/CGAL/cgal
25 lines
310 B
C++
25 lines
310 B
C++
#ifndef CGAL_Q_INPUT_H
|
|
#define CGAL_Q_INPUT_H
|
|
|
|
#include <CGAL/Object.h>
|
|
#include <QObject>
|
|
|
|
namespace CGAL {
|
|
|
|
class QtInput : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtInput(QObject* parent) : QObject(parent)
|
|
{
|
|
}
|
|
|
|
signals:
|
|
void generate(CGAL::Object o);
|
|
};
|
|
|
|
} // namespace CGAL
|
|
|
|
#endif // CGAL_Q_INPUT_H
|