From 005e5a38a08d2a204fbbc15b70f5c756a8baf426 Mon Sep 17 00:00:00 2001 From: Samuel Debionne Date: Fri, 8 Feb 2019 14:06:13 +0100 Subject: [PATCH] Make the Camera non-copyable --- sip/MetaInterface.sip | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sip/MetaInterface.sip b/sip/MetaInterface.sip index 0a26231..b9add86 100644 --- a/sip/MetaInterface.sip +++ b/sip/MetaInterface.sip @@ -22,5 +22,7 @@ namespace Meta virtual void getStatus(StatusType& status /Out/); virtual int getNbHwAcquiredFrames(); + private: + Interface(const Meta::Interface); }; };