File indexing completed on 2024-04-21 14:53:26

0001 /*
0002     This file is part of the KDE project
0003     SPDX-FileCopyrightText: 1998, 1999 Torben Weis <weis@kde.org>
0004     SPDX-FileCopyrightText: 2006 Daniel Teske <teske@squorn.de>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #include "kbookmarkactioninterface.h"
0010 
0011 KBookmarkActionInterface::KBookmarkActionInterface(const KBookmark &bk)
0012     : bm(bk)
0013 {
0014 }
0015 
0016 KBookmarkActionInterface::~KBookmarkActionInterface()
0017 {
0018 }
0019 
0020 const KBookmark KBookmarkActionInterface::bookmark() const
0021 {
0022     return bm;
0023 }