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.
 
 
 

24 lines
488 B

#ifndef LIBIP_INTERFACE_H
#define LIBIP_INTERFACE_H
#include <QObject>
#include "libip_global.h"
class LIBIP_EXPORT Interface : public QObject {
Q_OBJECT
public:
Interface(QString interface);
static QStringList list();
QStringList addresses() const;
bool hasCarrier(bool *ok = 0);
int addAddress(QString address) const;
int deleteAddress(QString address) const;
const QString& name() const;
private:
QString m_interface;
int m_index;
};
#endif // LIBIP_INTERFACE_H