1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/samples/qt/Common/src/Transparency.h
nds 55a40de890 0028934: Coding - Eliminate compiler warnings in OCCT samples
- 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.
2018-04-09 10:18:38 +03:00

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);
};