mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
18 lines
299 B
C++
18 lines
299 B
C++
#ifndef PLACEHOLDERITEM_H
|
|
#define PLACEHOLDERITEM_H
|
|
|
|
#include "dockitem.h"
|
|
|
|
class PlaceholderItem : public DockItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PlaceholderItem(QWidget *parent = 0);
|
|
|
|
// fake as app item
|
|
inline ItemType itemType() const {return App;}
|
|
};
|
|
|
|
#endif // PLACEHOLDERITEM_H
|