|
Revision 8, 471 bytes
(checked in by pantley2, 4 years ago)
|
added old DEUS project to SVN
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
#pragma warning(disable: 4786) |
|---|
| 7 |
#pragma once |
|---|
| 8 |
|
|---|
| 9 |
#include "DirectorInterface.h" |
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
class DirectorForm_impl : public DirectorForm |
|---|
| 13 |
{ |
|---|
| 14 |
Q_OBJECT |
|---|
| 15 |
public: |
|---|
| 16 |
DirectorForm_impl(QWidget* parent = 0, const char* name = 0, WFlags fl = 0) |
|---|
| 17 |
: DirectorForm(parent, name, fl) {shutting_down = false;} |
|---|
| 18 |
bool shutting_down; |
|---|
| 19 |
|
|---|
| 20 |
public slots: |
|---|
| 21 |
void shuttingDown() {shutting_down = true;} |
|---|
| 22 |
}; |
|---|