KBookmarks

kbookmarkactioninterface.cpp
1 /*
2  This file is part of the KDE project
3  SPDX-FileCopyrightText: 1998, 1999 Torben Weis <[email protected]>
4  SPDX-FileCopyrightText: 2006 Daniel Teske <[email protected]>
5 
6  SPDX-License-Identifier: LGPL-2.0-or-later
7 */
8 
9 #include "kbookmarkactioninterface.h"
10 
11 KBookmarkActionInterface::KBookmarkActionInterface(const KBookmark &bk)
12  : bm(bk)
13 {
14 }
15 
16 KBookmarkActionInterface::~KBookmarkActionInterface()
17 {
18 }
19 
20 const KBookmark KBookmarkActionInterface::bookmark() const
21 {
22  return bm;
23 }
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Mon May 8 2023 03:59:48 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.