Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LimaGroup
Lima-camera-slsdetector
Commits
cb31680a
Commit
cb31680a
authored
Sep 21, 2018
by
Alejandro Homs Puron
Committed by
Operator for ID00
Sep 21, 2018
Browse files
Forbid copies of Camera and Interface: BufferAllocMgr no longer copiable
parent
1d231d01
Changes
4
Hide whitespace changes
Inline
Side-by-side
include/SlsDetectorCamera.h
View file @
cb31680a
...
...
@@ -54,6 +54,7 @@ public:
typedef
Defs
::
NetworkParameter
NetworkParameter
;
Camera
(
std
::
string
config_fname
);
Camera
(
const
Camera
&
o
)
=
delete
;
virtual
~
Camera
();
Type
getType
();
...
...
include/SlsDetectorInterface.h
View file @
cb31680a
...
...
@@ -164,6 +164,7 @@ class Interface : public HwInterface
public:
Interface
(
Camera
&
cam
);
Interface
(
const
Interface
&
o
)
=
delete
;
virtual
~
Interface
();
virtual
void
getCapList
(
CapList
&
)
const
;
...
...
sip/SlsDetectorCamera.sip
View file @
cb31680a
...
...
@@ -121,6 +121,9 @@ public:
SlsDetector::GlobalCPUAffinityMgr::ProcessingFinishedEvent *
getProcessingFinishedEvent();
private:
Camera(const SlsDetector::Camera& o);
};
...
...
sip/SlsDetectorInterface.sip
View file @
cb31680a
...
...
@@ -145,6 +145,9 @@ class Interface : HwInterface
break;
}
%End
private:
Interface(const SlsDetector::Interface& o);
};
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment