OsdConfig.h 273 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef OSDCONFIG_H
#define OSDCONFIG_H

#include <QWidget>
#include "ui_OsdConfig.h"

class OsdConfig : public QWidget
{
    Q_OBJECT
    
public:
    explicit OsdConfig(QWidget *parent = 0);
    ~OsdConfig();
    
private:
    Ui::OsdConfig ui;
};

#endif // OSDCONFIG_H