Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
iMSTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ruiliang Gao
iMSTK
Commits
cde3fcbd
Commit
cde3fcbd
authored
9 years ago
by
Sean Radigan
Browse files
Options
Downloads
Patches
Plain Diff
Got rid of some compiler warnings about override
parent
8b0dc825
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/smSimulators/smFemSceneObject.h
+1
-1
1 addition, 1 deletion
include/smSimulators/smFemSceneObject.h
include/smSimulators/smVegaFemSimulator.h
+5
-5
5 additions, 5 deletions
include/smSimulators/smVegaFemSimulator.h
with
6 additions
and
6 deletions
include/smSimulators/smFemSceneObject.h
+
1
−
1
View file @
cde3fcbd
...
...
@@ -100,7 +100,7 @@ public:
/// \brief !! This function does not clone!, it simply returns a pointer...this is dangerous
virtual
std
::
shared_ptr
<
smSceneObject
>
clone
()
override
;
virtual
void
init
();
virtual
void
init
()
override
;
public
:
//fem objetc has two representations: surface and volume
...
...
This diff is collapsed.
Click to expand it.
include/smSimulators/smVegaFemSimulator.h
+
5
−
5
View file @
cde3fcbd
...
...
@@ -39,19 +39,19 @@ public:
smVegaFemSimulator
(
std
::
shared_ptr
<
smErrorLog
>
p_errorLog
);
/// \brief start the job
virtual
void
beginSim
();
virtual
void
beginSim
()
override
;
/// \brief !!
virtual
void
initCustom
();
virtual
void
initCustom
()
override
;
/// \brief implement the deformation computation through fem here
virtual
void
run
();
virtual
void
run
()
override
;
/// \breif end the job
void
endSim
();
void
endSim
()
override
;
/// \brief synchronize the buffers in the object..do not call by yourself.
void
syncBuffers
();
void
syncBuffers
()
override
;
/// \brief handle the keyboard and haptic button press events
void
handleEvent
(
std
::
shared_ptr
<
smtk
::
Event
::
smEvent
>
p_event
)
override
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment