PxCrypt v0.1
Encrypt data within an image
Loading...
Searching...
No Matches
px_skimmer.h
1#ifndef PX_SKIMMER_H
2#define PX_SKIMMER_H
3
4// Qt Includes
5#include <QImage>
6
7// Project Includes
8#include "px_access_read.h"
9
10namespace PxCrypt
11{
14class PxSkimmer
15{
16//-Instance Variables------------------------------------------------------------------------------------------------------
17private:
18 PxAccessRead* mSurfaceAccess;
19 const QRgb* mRefPixels;
20
21 quint8 mMask;
22
23//-Constructor---------------------------------------------------------------------------------------------------------
24public:
25 PxSkimmer(PxAccessRead* surfaceAccess, const QImage* medium);
26
27//-Instance Functions----------------------------------------------------------------------------------------------
28private:
29 quint8 referenceChannelValue();
30
31public:
32 bool isAtLimit();
33 quint8 next();
34};
35
37}
38
39#endif // PX_SKIMMER_H
The PxCrypt namespace is the main namespace through which all functionality of the PxCrypt library is...
Definition decode_error.cpp:5