30 lines
493 B
C
30 lines
493 B
C
|
|
/**
|
||
|
|
* @file CBaseDialog.h
|
||
|
|
* @date July 2, 2014
|
||
|
|
* @auto zhangjie
|
||
|
|
*/
|
||
|
|
#ifndef CBaseDialog_H
|
||
|
|
#define CBaseDialog_H
|
||
|
|
#include <QDialog.h>
|
||
|
|
#include "OSGFramework.h"
|
||
|
|
#pragma warning( push ,0)
|
||
|
|
|
||
|
|
#pragma warning( pop )
|
||
|
|
class OSGFRAMEWORK_EXPORT CBaseDialog : public QDialog
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
CBaseDialog(QWidget *parent = 0, Qt::WindowFlags flags = 0)
|
||
|
|
:QDialog(parent, flags)
|
||
|
|
{
|
||
|
|
};
|
||
|
|
|
||
|
|
~CBaseDialog(void)
|
||
|
|
{
|
||
|
|
};
|
||
|
|
virtual void ReFreshWindow(int type=0)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
};
|
||
|
|
#endif /* PAITABLEWIDGET_H_ */
|