FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
nodeeditor/src/NodeDataModel.cpp at master · BehaviorTree/nodeeditor · GitHub
BehaviorTree
/
nodeeditor
Public
forked from
l3enQ/nodeeditor
Notifications
You must be signed in to change notification settings
Fork
0
Star
4
Code
Pull requests
1
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
/
NodeDataModel.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
41 lines (30 loc) · 544 Bytes
Breadcrumbs
nodeeditor
/
src
/
NodeDataModel.cpp
Copy path
File metadata and controls
41 lines (30 loc) · 544 Bytes
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
#
include
"
NodeDataModel.hpp
"
#
include
"
StyleCollection.hpp
"
using
QtNodes::NodeDataModel;
using
QtNodes::NodeStyle;
NodeDataModel::
NodeDataModel
()
: _nodeStyle(StyleCollection::nodeStyle())
{
//
Derived classes can initialize specific style here
}
QJsonObject
NodeDataModel::
save
()
const
{
QJsonObject modelJson;
modelJson[
"
name
"
] =
name
();
return
modelJson;
}
NodeStyle
const
&
NodeDataModel::
nodeStyle
()
const
{
return
_nodeStyle;
}
void
NodeDataModel::
setNodeStyle
(NodeStyle
const
& style)
{
_nodeStyle = style;
}
Back
|
FazBrowse Home
|
New Git URL