Merge pull request #1470 from Dmitry-Me/removeAndProhibitCopy01
win-ivcam: Remove and prohibit useless member functionsmaster
commit
61c95101d3
|
@ -36,7 +36,6 @@ SegServerImpl::SegServerImpl()
|
|||
m_sharedBuffer = NULL;
|
||||
}
|
||||
|
||||
SegServerImpl::SegServerImpl(SegServerImpl const&) {};
|
||||
SegServerImpl::~SegServerImpl()
|
||||
{
|
||||
if (m_server)
|
||||
|
@ -46,7 +45,6 @@ SegServerImpl::~SegServerImpl()
|
|||
}
|
||||
instance = nullptr;
|
||||
};
|
||||
SegServerImpl& SegServerImpl::operator=(const SegServerImpl &) { return *this; };
|
||||
|
||||
SegServer* SegServerImpl::CreateServer()
|
||||
{
|
||||
|
|
|
@ -56,8 +56,8 @@ private:
|
|||
LPCTSTR m_sharedBuffer;
|
||||
|
||||
SegServerImpl();
|
||||
SegServerImpl(SegServerImpl const& src);
|
||||
SegServerImpl& operator=(const SegServerImpl & src);
|
||||
SegServerImpl(SegServerImpl const& src) = delete;
|
||||
SegServerImpl& operator=(const SegServerImpl & src) = delete;
|
||||
|
||||
public:
|
||||
virtual ~SegServerImpl();
|
||||
|
|
Loading…
Reference in New Issue