Move constructor implemenation to cpp

This commit is contained in:
Stefano Di Martino 2019-08-09 07:55:45 +02:00
parent 52626c6125
commit 65085a7bb1
2 changed files with 6 additions and 3 deletions

View File

@ -2,6 +2,11 @@
namespace zxing {
Counted::Counted() :
count_(0)
{
}
Counted::~Counted()
{
}

View File

@ -27,9 +27,7 @@ class Counted {
private:
unsigned int count_;
public:
Counted() :
count_(0) {
}
Counted();
virtual ~Counted();