Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CommonGUI
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Frédéric Larue
CommonGUI
Commits
c388e683
Commit
c388e683
authored
Aug 02, 2019
by
Frédéric Larue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
getViewer() function of DisplayableInterface set public.
parent
a3fe0617
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
Interfaces/DisplayableInterface.h
Interfaces/DisplayableInterface.h
+2
-3
No files found.
Interfaces/DisplayableInterface.h
View file @
c388e683
...
...
@@ -49,9 +49,6 @@ private:
}
protected:
/** Recover the current viewer to which this Displayable is associated. */
inline
GLViewer
*
getViewer
()
const
{
return
m_Viewer
;
}
inline
QString
getResourceContent
(
const
QString
&
resourceName
)
const
{
QString
content
;
...
...
@@ -102,6 +99,8 @@ public:
inline
DisplayableInterface
(
GenericUIData
*
m
,
GLViewer
*
v
)
:
QObject
(),
m_Data
(
m
),
m_Viewer
(
v
),
m_IsAnimationPaused
(
false
)
{}
virtual
~
DisplayableInterface
()
{}
/** Recover the current viewer to which this Displayable is associated. */
inline
GLViewer
*
getViewer
()
const
{
return
m_Viewer
;
}
/** Recover the source data from which this Displayable has been created. */
inline
GenericUIData
*
getSource
()
const
{
return
m_Data
;
}
/** Recover the current state of the set of display parameters. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment