KBookmarks

kbookmarkactioninterface.h
1/*
2 This file is part of the KDE project
3 SPDX-FileCopyrightText: 1998, 1999 Torben Weis <weis@kde.org>
4 SPDX-FileCopyrightText: 2006 Daniel Teske <teske@squorn.de>
5
6 SPDX-License-Identifier: LGPL-2.0-or-later
7*/
8
9#ifndef KBOOKMARKACTIONINTERFACE_H
10#define KBOOKMARKACTIONINTERFACE_H
11
12#include "kbookmark.h"
13
14/**
15 * @class KBookmarkActionInterface kbookmarkactioninterface.h KBookmarkActionInterface
16 *
17 * The interface to implement by actions and menus which represent a bookimark
18 */
19class KBOOKMARKS_EXPORT KBookmarkActionInterface
20{
21public:
22 explicit KBookmarkActionInterface(const KBookmark &bk);
24 const KBookmark bookmark() const;
25
26private:
27 const KBookmark bm;
28};
29
30#endif
The interface to implement by actions and menus which represent a bookimark.
A class representing a bookmark.
Definition kbookmark.h:27
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:59 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.