mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-18 18:44:39 +00:00
15 lines
270 B
C++
15 lines
270 B
C++
#ifndef ML_APPLICATION_H
|
|
#define ML_APPLICATION_H
|
|
|
|
#include <QApplication>
|
|
|
|
class MeshLabApplication : public QApplication
|
|
{
|
|
public:
|
|
MeshLabApplication(int &argc, char *argv[]);
|
|
~MeshLabApplication();
|
|
bool notify(QObject * rec, QEvent * ev);
|
|
};
|
|
|
|
#endif
|