mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
15 lines
281 B
C
15 lines
281 B
C
![]() |
#ifndef PLUGINPROXYINTERFACE_H
|
||
|
#define PLUGINPROXYINTERFACE_H
|
||
|
|
||
|
#include <QtCore>
|
||
|
|
||
|
class PluginsItemInterface;
|
||
|
class PluginProxyInterface
|
||
|
{
|
||
|
public:
|
||
|
virtual void itemAdded(PluginsItemInterface * const itemInter, const QString &itemKey) = 0;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // PLUGINPROXYINTERFACE_H
|