umbrello  2.39.2
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
uniqueid.h
Go to the documentation of this file.
1 /*
2  SPDX-License-Identifier: GPL-2.0-or-later
3  SPDX-FileCopyrightText: 2006-2020 Umbrello UML Modeller Authors <umbrello-devel@kde.org>
4 */
5 
6 #ifndef UNIQUEID_H
7 #define UNIQUEID_H
8 
9 #include "basictypes.h"
10 
11 namespace UniqueID {
12 
14 
16  // Only required by code that does special operations on unique IDs.
17  // NB Try to avoid these functions if possible because their
18  // implementation and/or programming interface may change.
19 
20  void init();
21 
22  void set(Uml::ID::Type id);
24 
25 } // end namespace UniqueID
26 
27 #endif
28 
std::string Type
Definition: basictypes.h:371
Definition: uniqueid.cpp:10
Uml::ID::Type get()
Definition: uniqueid.cpp:40
void set(Uml::ID::Type id)
Definition: uniqueid.cpp:48
Uml::ID::Type gen()
Definition: uniqueid.cpp:21
void init()
Definition: uniqueid.cpp:32