mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 18:35:07 +00:00
19 lines
361 B
C++
19 lines
361 B
C++
/*
|
|
* Copyright (c) 2023, Bastiaan van der Plaat <bastiaan.v.d.plaat@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Widget.h>
|
|
|
|
namespace Maps {
|
|
|
|
class FavoritesEditDialog final : public GUI::Widget {
|
|
C_OBJECT(FavoritesEditDialog)
|
|
public:
|
|
static ErrorOr<NonnullRefPtr<FavoritesEditDialog>> try_create();
|
|
};
|
|
|
|
}
|