Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
Lima
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
65
Issues
65
List
Boards
Labels
Service Desk
Milestones
Jira
Jira
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LimaGroup
Lima
Commits
da0f08da
Commit
da0f08da
authored
May 13, 2020
by
Alejandro Homs Puron
Committed by
bliss administrator
Sep 25, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing virtual destructor for Timer::Callback (abstract) class
parent
38db54e3
Pipeline
#34132
passed with stages
in 31 minutes and 26 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
common/include/lima/Timer.h
common/include/lima/Timer.h
+2
-0
common/sip/Timer.sip
common/sip/Timer.sip
+2
-0
No files found.
common/include/lima/Timer.h
View file @
da0f08da
...
...
@@ -38,6 +38,8 @@ namespace lima
enum
Stat
{
DOWN
,
DELAY
,
UP
,
RISING_EDGE
,
FALLING_EDGE
};
class
Callback
{
public:
virtual
~
Callback
()
{}
protected:
virtual
void
start
()
{}
virtual
void
risingEdge
()
{}
...
...
common/sip/Timer.sip
View file @
da0f08da
...
...
@@ -31,6 +31,8 @@ public:
enum Stat {DOWN,UP,RISING_EDGE,FALLING_EDGE};
class Callback
{
public:
virtual ~Callback();
protected:
virtual void start();
virtual void risingEdge();
...
...
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