blob: f25f1067ca654c2b6de4d84499cefaa403b80d90 (
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
25
|
/*
* 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
|