mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-03 00:15:21 +00:00
22 lines
480 B
C++
22 lines
480 B
C++
// Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#ifndef PLACEHOLDERITEM_H
|
|
#define PLACEHOLDERITEM_H
|
|
|
|
#include "dockitem.h"
|
|
|
|
class PlaceholderItem : public DockItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PlaceholderItem(QWidget *parent = 0);
|
|
|
|
inline ItemType itemType() const override { return Placeholder; }
|
|
};
|
|
|
|
#endif // PLACEHOLDERITEM_H
|