File indexing completed on 2024-05-19 16:31:57

0001 /*
0002  *  SPDX-FileCopyrightText: 2009 David Hubner <hubnerd@ntlworld.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  *
0006  */
0007 
0008 #ifndef NICSIGNALS
0009 #define NICSIGNALS
0010 
0011 // Qt
0012 #include <QObject>
0013 
0014 class NicSignals : public QObject
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     NicSignals();
0020 
0021 private:
0022     void connectToNicSignals();
0023 
0024 signals:
0025     void nicActivatedOrDisconnected();
0026 
0027 public slots:
0028     void nicChangedSignal(int, int, int);
0029 };
0030 
0031 #endif // NICSIGNALS