~hmatuschek/+junk/qdmr-package

« back to all changes in this revision

Viewing changes to test/crc32test.hh

  • Committer: Hannes Matuschek
  • Date: 2020-07-07 14:49:41 UTC
  • mfrom: (1.1.4)
  • Revision ID: hmatuschek@gmail.com-20200707144941-niwxz5phhmi0kt1w
* Finalized implementation of MD5R.
* Fixed RD-5R upload.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef CRC32TEST_H
 
2
#define CRC32TEST_H
 
3
 
 
4
#include <QObject>
 
5
 
 
6
class CRC32Test : public QObject
 
7
{
 
8
  Q_OBJECT
 
9
 
 
10
public:
 
11
  explicit CRC32Test(QObject *parent = nullptr);
 
12
 
 
13
private slots:
 
14
  void testCRC32();
 
15
};
 
16
 
 
17
#endif // CRC32TEST_H