mirror of https://github.com/status-im/qzxing.git
remove copy constructor
This commit is contained in:
parent
fad963c854
commit
7132bc96ea
|
@ -16,12 +16,6 @@ BlockParsedResult::BlockParsedResult(const DecodedInformation &information, bool
|
||||||
m_decodedInformation = information;
|
m_decodedInformation = information;
|
||||||
}
|
}
|
||||||
|
|
||||||
BlockParsedResult::BlockParsedResult(const BlockParsedResult &other)
|
|
||||||
{
|
|
||||||
m_finished = other.m_finished;
|
|
||||||
m_decodedInformation = other.m_decodedInformation;
|
|
||||||
}
|
|
||||||
|
|
||||||
DecodedInformation BlockParsedResult::getDecodedInformation()
|
DecodedInformation BlockParsedResult::getDecodedInformation()
|
||||||
{
|
{
|
||||||
return m_decodedInformation;
|
return m_decodedInformation;
|
||||||
|
|
|
@ -46,8 +46,6 @@ public:
|
||||||
|
|
||||||
BlockParsedResult(const DecodedInformation& information, bool finished);
|
BlockParsedResult(const DecodedInformation& information, bool finished);
|
||||||
|
|
||||||
BlockParsedResult(const BlockParsedResult& other);
|
|
||||||
|
|
||||||
DecodedInformation getDecodedInformation();
|
DecodedInformation getDecodedInformation();
|
||||||
|
|
||||||
bool isFinished();
|
bool isFinished();
|
||||||
|
|
Loading…
Reference in New Issue