Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_name_server.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2002 Patrick Julien <freak@codepimps.org>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6#ifndef KIS_NAMESERVER_H_
7#define KIS_NAMESERVER_H_
8
9#include <QtGlobal>
10#include <kritaimage_export.h>
11
12class KRITAIMAGE_EXPORT KisNameServer
13{
14public:
15 KisNameServer(qint32 seed = 1);
16
17 qint32 number();
18 qint32 currentSeed() const;
19 void rollback();
20
21private:
23};
24
25#endif // KIS_NAMESERVER_H_
26