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