Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
interfaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
bioroboticslab
biotracker
interfaces
Commits
affcea6a
Commit
affcea6a
authored
5 years ago
by
calrama
Browse files
Options
Downloads
Patches
Plain Diff
Qt5 signals cannot be virtual
parent
0bc8e1ee
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Src/Interfaces/IBioTrackerPlugin.h
+8
-8
8 additions, 8 deletions
Src/Interfaces/IBioTrackerPlugin.h
with
8 additions
and
8 deletions
Src/Interfaces/IBioTrackerPlugin.h
+
8
−
8
View file @
affcea6a
...
...
@@ -44,14 +44,14 @@ private:
virtual
void
connectInterfaces
();
Q_SIGNALS
:
virtual
void
emitCvMat
(
std
::
shared_ptr
<
cv
::
Mat
>
mat
,
QString
name
)
=
0
;
/**
* Will be sent when tracking is doen to multiple components of the core app
* An example is the visualisation which is then updated
*/
virtual
void
emitTrackingDone
(
uint
framenumber
)
=
0
;
virtual
void
emitChangeDisplayImage
(
QString
str
)
=
0
;
virtual
void
emitCorePermission
(
std
::
pair
<
ENUMS
::
COREPERMISSIONS
,
bool
>
)
=
0
;
void
emitCvMat
(
std
::
shared_ptr
<
cv
::
Mat
>
mat
,
QString
name
);
/**
* Will be sent when tracking is doen to multiple components of the core app
* An example is the visualisation which is then updated
*/
void
emitTrackingDone
(
uint
framenumber
);
void
emitChangeDisplayImage
(
QString
str
);
void
emitCorePermission
(
std
::
pair
<
ENUMS
::
COREPERMISSIONS
,
bool
>
);
public
Q_SLOTS
:
virtual
void
receiveCurrentFrameFromMainApp
(
std
::
shared_ptr
<
cv
::
Mat
>
mat
,
uint
frameNumber
)
=
0
;
...
...
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