mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- covering Qt warnings for compilation under MSVC 2013 and greater - avoid warning about 'M_PI'(and others) redefinition warning of math.h: includes of QtWidgets should follow after other includes.
17 lines
380 B
C++
Executable File
17 lines
380 B
C++
Executable File
#include <Standard_WarningsDisable.hxx>
|
|
#include <QDialog>
|
|
#include <QWidget>
|
|
#include <Standard_WarningsRestore.hxx>
|
|
|
|
#include <AIS_InteractiveContext.hxx>
|
|
|
|
class DialogTransparency : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
DialogTransparency ( QWidget * parent=0, Qt::WindowFlags f=0, bool modal=true );
|
|
~DialogTransparency();
|
|
signals:
|
|
void sendTransparencyChanged(int value);
|
|
};
|