Mostly complete from the Python original
This commit is contained in:
commit
97cf902b87
18 changed files with 527 additions and 0 deletions
19
src/window.h
Normal file
19
src/window.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
#ifndef WINDOW_H
|
||||
#define WINDOW_H
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
class Canvas;
|
||||
|
||||
class Window : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit Window(QWidget* parent=0);
|
||||
void load_stl(const QString& filename);
|
||||
|
||||
private:
|
||||
Canvas* canvas;
|
||||
};
|
||||
|
||||
#endif // WINDOW_H
|
Loading…
Add table
Add a link
Reference in a new issue