File indexing completed on 2025-01-05 04:37:09

0001 /*
0002     SPDX-FileCopyrightText: 2005 Joris Guisson <joris.guisson@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 #include "datachecker.h"
0007 
0008 namespace bt
0009 {
0010 DataChecker::DataChecker(bt::Uint32 from, bt::Uint32 to)
0011     : need_to_stop(false)
0012     , from(from)
0013     , to(to)
0014 {
0015     failed = found = downloaded = not_downloaded = 0;
0016 }
0017 
0018 DataChecker::~DataChecker()
0019 {
0020 }
0021 
0022 }
0023 
0024 #include "moc_datachecker.cpp"