mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 09:18:05 +03:00
20 lines
361 B
C
20 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();
|
||
|
};
|
||
|
|
||
|
}
|