You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
296 B

#ifndef INTERFACE_H
#define INTERFACE_H
#include <QObject>
class Q_DECL_EXPORT Interface : public QObject {
Q_OBJECT
public:
Interface(QString interface);
static QStringList list();
QStringList addresses();
bool hasCarrier();
private:
QString m_interface;
};
#endif // INTERFACE_H