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