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

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

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

#endif // SONARCONFIG_H