Albert
Loading...
Searching...
No Matches
urlhandler.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2025 Manuel Schneider
2
3#pragma once
4#include <albert/export.h>
5#include <albert/extension.h>
6class QUrl;
7
8namespace albert
9{
10class ALBERT_EXPORT UrlHandler : virtual public Extension
11{
12public:
13
14 virtual void handle(const QUrl&) = 0;
15
16protected:
17
18 ~UrlHandler() override;
19};
20}
Abstract extension class.
Definition extension.h:19
Definition urlhandler.h:11
virtual void handle(const QUrl &)=0
~UrlHandler() override
Definition action.h:10