From 6e89bf230725e59e71a3273bf8492ed0a2066716 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Fri, 15 Nov 2019 17:02:39 +0200 Subject: Bookmarks: move xbel implementation to formats/ --- lib/bookmarks/formats/xbel.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lib/bookmarks/formats/xbel.h (limited to 'lib/bookmarks/formats/xbel.h') diff --git a/lib/bookmarks/formats/xbel.h b/lib/bookmarks/formats/xbel.h new file mode 100644 index 0000000..44a65bb --- /dev/null +++ b/lib/bookmarks/formats/xbel.h @@ -0,0 +1,20 @@ +/* + * This file is part of smolbote. It's copyrighted by the contributors recorded + * in the version control history of the file, available from its original + * location: https://neueland.iserlohn-fortress.net/gitea/aqua/smolbote + * + * SPDX-License-Identifier: GPL-3.0 + */ + +#ifndef XBEL_H +#define XBEL_H + +class QIODevice; +class BookmarkItem; +namespace Xbel +{ +void read(QIODevice *device, BookmarkItem *item); +void write(QIODevice *device, const BookmarkItem *item); +} + +#endif // XBEL_H -- cgit v1.2.1