win-ivcam: Remove and prohibit useless member functions

master
Dmitry-Me 2018-09-04 17:40:54 +03:00
parent c5e1541cbe
commit ecf508269d
2 changed files with 2 additions and 4 deletions

View File

@ -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()
{

View File

@ -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();