File: feedlistmanagementinterface.cpp

package info (click to toggle)
akregator 4%3A25.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,944 kB
  • sloc: cpp: 28,253; xml: 287; makefile: 8; sh: 4
file content (25 lines) | stat: -rw-r--r-- 623 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
    This file is part of Akregator.

    SPDX-FileCopyrightText: 2008 Frank Osterfeld <osterfeld@kde.org>

    SPDX-License-Identifier: GPL-2.0-or-later WITH Qt-Commercial-exception-1.0
*/

#include "feedlistmanagementinterface.h"

using namespace Akregator;

FeedListManagementInterface *FeedListManagementInterface::m_instance = nullptr;

FeedListManagementInterface::~FeedListManagementInterface() = default;

FeedListManagementInterface *FeedListManagementInterface::instance()
{
    return m_instance;
}

void FeedListManagementInterface::setInstance(FeedListManagementInterface *iface)
{
    m_instance = iface;
}