mirror of
https://github.com/status-im/qzxing.git
synced 2025-02-21 07:08:28 +00:00
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;
|
||||
}
|
||||
|
||||
BlockParsedResult::BlockParsedResult(const BlockParsedResult &other)
|
||||
{
|
||||
m_finished = other.m_finished;
|
||||
m_decodedInformation = other.m_decodedInformation;
|
||||
}
|
||||
|
||||
DecodedInformation BlockParsedResult::getDecodedInformation()
|
||||
{
|
||||
return m_decodedInformation;
|
||||
|
@ -46,8 +46,6 @@ public:
|
||||
|
||||
BlockParsedResult(const DecodedInformation& information, bool finished);
|
||||
|
||||
BlockParsedResult(const BlockParsedResult& other);
|
||||
|
||||
DecodedInformation getDecodedInformation();
|
||||
|
||||
bool isFinished();
|
||||
|
Loading…
x
Reference in New Issue
Block a user