Init commit

This commit is contained in:
semenov
2024-08-14 10:02:09 +03:00
parent 1870d26468
commit c00efe0177
41 changed files with 2051 additions and 0 deletions

21
Core/screenchecker.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef SCREENCHECKER_H
#define SCREENCHECKER_H
#include <QObject>
#include <QScreen>
#include <QGuiApplication>
#include <QDebug>
class ScreenChecker
{
public:
ScreenChecker();
void Check();
QString getScreenCount() const;
private:
qint64 screenCount;
QList<QScreen *> screens;
};
#endif // SCREENCHECKER_H