FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
nodeeditor/src/DataModelRegistry.cpp at hahaton · DigitalPulseSoftware/nodeeditor · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
DigitalPulseSoftware
/
nodeeditor
Public
forked from
paceholder/nodeeditor
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
nodeeditor
/
src
/
DataModelRegistry.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
60 lines (46 loc) · 1.15 KB
Breadcrumbs
nodeeditor
/
src
/
DataModelRegistry.cpp
Copy path
File metadata and controls
60 lines (46 loc) · 1.15 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#
include
"
DataModelRegistry.hpp
"
#
include
<
QtCore/QFile
>
#
include
<
QtWidgets/QMessageBox
>
using
QtNodes::DataModelRegistry;
using
QtNodes::NodeDataModel;
std::unique_ptr<NodeDataModel>
DataModelRegistry::
create
(QString
const
&modelName)
{
auto
it = _registeredModels.
find
(modelName);
if
(it != _registeredModels.
end
())
{
return
it->
second
->
clone
();
}
return
nullptr
;
}
DataModelRegistry::RegisteredModelsMap
const
&
DataModelRegistry::
registeredModels
()
const
{
return
_registeredModels;
}
DataModelRegistry::RegisteredModelsCategoryMap
const
&
DataModelRegistry::
registeredModelsCategoryAssociation
()
const
{
return
_registeredModelsCategory;
}
DataModelRegistry::CategoriesSet
const
&
DataModelRegistry::
categories
()
const
{
return
_categories;
}
std::unique_ptr<NodeDataModel>
DataModelRegistry::
getTypeConverter
(QString
const
&sourceTypeID, QString
const
&destTypeID)
const
{
auto
typeConverterKey =
std::make_pair
(sourceTypeID, destTypeID);
auto
converter = _registeredTypeConverters.
find
(typeConverterKey);
if
(converter != _registeredTypeConverters.
end
())
{
return
converter->
second
->
Model
->
clone
();
}
return
nullptr
;
}
Back
|
FazBrowse Home
|
New Git URL