OpenHantek
exportsettings.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: GPL-2.0+
2 
3 #pragma once
4 
5 #include <QSize>
6 
9  QSize imageSize = QSize(800, 600);
10  unsigned exportSizeBytes = 1024*1024*10;
11  bool useProcessedSamples = true;
12 };
bool useProcessedSamples
Export raw or processed samples.
Definition: exportsettings.h:11
QSize imageSize
Size of exported images in pixels.
Definition: exportsettings.h:9
unsigned exportSizeBytes
For exporters that save a continous stream. Default: 10 Megabytes.
Definition: exportsettings.h:10
Holds the export options of the program.
Definition: exportsettings.h:8