mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
This allows to create images independent from screen resolution Replaced copy-pasted screenshot code with the single implementation
9 lines
121 B
C++
9 lines
121 B
C++
#ifndef SCREENSHOT_H
|
|
#define SCREENSHOT_H
|
|
|
|
class QWidget;
|
|
|
|
void SaveScreenshot(QWidget *widget);
|
|
|
|
#endif // SCREENSHOT_H
|