mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-03 00:15:21 +00:00
15 lines
223 B
C++
15 lines
223 B
C++
#ifndef PLACEHOLDERITEM_H
|
|
#define PLACEHOLDERITEM_H
|
|
|
|
#include "dockitem.h"
|
|
|
|
class PlaceholderItem : public DockItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PlaceholderItem(QWidget *parent = 0);
|
|
};
|
|
|
|
#endif // PLACEHOLDERITEM_H
|