diff options
Diffstat (limited to 'src/pixels.h')
| -rw-r--r-- | src/pixels.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/pixels.h b/src/pixels.h index 06a8654..07f1c8f 100644 --- a/src/pixels.h +++ b/src/pixels.h @@ -1,10 +1,8 @@ #pragma once #include <array> -#include <mutex> - -#include "fuck_intel.h" +#include <QDebug> #include <QString> #include "constants.h" @@ -52,4 +50,12 @@ struct Pixels // private: // std::mutex m_mtx; + + /*! + * \brief debugPrintIfInvalid - print profile if invalid + * \return `true` if valid, `false` otherwise + */ + bool debugPrintIfInvalid() const; }; + +QDebug &operator<<(QDebug &debug, const Pixels &pixels);
\ No newline at end of file |
