File indexing completed on 2024-05-05 05:12:58

0001 /*
0002     This file is part of Akregator.
0003 
0004     SPDX-FileCopyrightText: 2007 Frank Osterfeld <osterfeld@kde.org>
0005 
0006     SPDX-License-Identifier: GPL-2.0-or-later WITH Qt-Commercial-exception-1.0
0007 */
0008 #pragma once
0009 
0010 namespace Akregator
0011 {
0012 /** (un)read status of the article */
0013 enum ArticleStatus {
0014     Unread = 0, /**< article wasn't read yet by the user */
0015     Read, /**< article is read */
0016     New /**< article was fetched in the last fetch of it's feed and not read yet. Note that, semantically, new implies unread */
0017 };
0018 }