You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
365 B
C++
25 lines
365 B
C++
#pragma once
|
|
|
|
#include "iDockBaseWx.h"
|
|
|
|
#ifdef _SCAN_OLD_CODES_
|
|
|
|
// 该类目前业已废弃
|
|
class M_GUI_TREE_EXPORT iDockModelOption : public iDockBaseWx
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit iDockModelOption(const QString& sTitle, QWidget *parent = 0);
|
|
~iDockModelOption();
|
|
|
|
protected:
|
|
virtual QWidget* buildCentrlWx(int nIndex);
|
|
|
|
private:
|
|
|
|
|
|
};
|
|
|
|
#endif
|