File: videosettings.h

package info (click to toggle)
openterface-qt 0.1.0%2Bds-1
  • links: PTS
  • area: main
  • in suites: experimental
  • size: 1,444 kB
  • sloc: cpp: 9,552; sh: 127; python: 57; ansic: 4; makefile: 4
file content (23 lines) | stat: -rw-r--r-- 357 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef VIDEOSETTINGS_H
#define VIDEOSETTINGS_H

#include <QWidget>

namespace Ui {
class VideoSettings;
}

class VideoSettings : public QWidget
{
    Q_OBJECT

public:
    explicit VideoSettings(QWidget *parent = nullptr);
    ~VideoSettings();

private:
    Ui::VideoSettings *ui;
    // Remove any FPS slider related members
};

#endif // VIDEOSETTINGS_H