File indexing completed on 2024-05-12 15:56:45

0001 /*
0002  *  SPDX-FileCopyrightText: 2016 Dmitry Kazakov <dimula73@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #include "KoResourceUpdateMediator.h"
0008 
0009 
0010 struct KoResourceUpdateMediator::Private
0011 {
0012     Private(int _key) : key(_key) {}
0013     int key;
0014 };
0015 
0016 
0017 KoResourceUpdateMediator::KoResourceUpdateMediator(int key)
0018     : m_d(new Private(key))
0019 {
0020 }
0021 
0022 KoResourceUpdateMediator::~KoResourceUpdateMediator()
0023 {
0024 }
0025 
0026 int KoResourceUpdateMediator::key() const
0027 {
0028     return m_d->key;
0029 }