mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00
17 lines
248 B
C++
17 lines
248 B
C++
#ifndef CONTAINERWIDGET_H
|
|
#define CONTAINERWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
class ContainerWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ContainerWidget(QWidget *parent = 0);
|
|
|
|
QSize sizeHint() const;
|
|
};
|
|
|
|
#endif // CONTAINERWIDGET_H
|