mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00
17 lines
271 B
C++
17 lines
271 B
C++
#ifndef CONTAINERITEM_H
|
|
#define CONTAINERITEM_H
|
|
|
|
#include "dockitem.h"
|
|
|
|
class ContainerItem : public DockItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ContainerItem(QWidget *parent = 0);
|
|
|
|
inline ItemType itemType() const {return Container;}
|
|
};
|
|
|
|
#endif // CONTAINERITEM_H
|