blob: d4666af25f102d04e3e2ce620591a46439856d49 (
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 <KUserFeedback/AbstractDataSource>
class DolphinMainWindow;
class PlacesDataSource : public KUserFeedback::AbstractDataSource
{
public:
PlacesDataSource();
QString name() const override;
QString description() const override;
QVariant data() override;
};
#endif // PLACESDATASOURCE_H
|