blob: ad4c1725d6d32c3716c1d1d0fb7ff4d3773e6801 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* SPDX-FileCopyrightText: 2020 Elvis Angelaccio <[email protected]
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PLACESDATASOURCE_H
#define PLACESDATASOURCE_H
#include <KUserFeedbackQt6/AbstractDataSource>
class DolphinMainWindow;
class PlacesDataSource : public KUserFeedback::AbstractDataSource
{
public:
PlacesDataSource();
QString name() const override;
QString description() const override;
QVariant data() override;
};
#endif // PLACESDATASOURCE_H
|