mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 02:05:54 +00:00
21 lines
384 B
C++
21 lines
384 B
C++
/*
|
|
SPDX-FileCopyrightText: 2020 Tobias Fella <fella@posteo.de>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef COMPONENTCHOOSERFILEMANAGER_H
|
|
#define COMPONENTCHOOSERFILEMANAGER_H
|
|
|
|
#include "componentchooser.h"
|
|
|
|
class ComponentChooserFileManager : public ComponentChooser
|
|
{
|
|
public:
|
|
ComponentChooserFileManager(QObject *parent);
|
|
|
|
void save() override;
|
|
};
|
|
|
|
#endif
|