mirror of https://github.com/status-im/qzxing.git
Move constructor implemenation to cpp
This commit is contained in:
parent
52626c6125
commit
65085a7bb1
|
@ -2,6 +2,11 @@
|
|||
|
||||
namespace zxing {
|
||||
|
||||
Counted::Counted() :
|
||||
count_(0)
|
||||
{
|
||||
}
|
||||
|
||||
Counted::~Counted()
|
||||
{
|
||||
}
|
||||
|
|
|
@ -27,9 +27,7 @@ class Counted {
|
|||
private:
|
||||
unsigned int count_;
|
||||
public:
|
||||
Counted() :
|
||||
count_(0) {
|
||||
}
|
||||
Counted();
|
||||
|
||||
virtual ~Counted();
|
||||
|
||||
|
|
Loading…
Reference in New Issue