forked from Qortal/Brooklyn
21 lines
368 B
C
21 lines
368 B
C
|
/*
|
||
|
SPDX-FileCopyrightText: 2020 Tobias Fella <fella@posteo.de>
|
||
|
|
||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#ifndef COMPONENTCHOOSERBROWSER_H
|
||
|
#define COMPONENTCHOOSERBROWSER_H
|
||
|
|
||
|
#include "componentchooser.h"
|
||
|
|
||
|
class ComponentChooserBrowser : public ComponentChooser
|
||
|
{
|
||
|
public:
|
||
|
ComponentChooserBrowser(QObject *parent);
|
||
|
|
||
|
void save() override;
|
||
|
};
|
||
|
|
||
|
#endif
|