@@ -0,0 +1,16 @@
#ifndef NETWORK_H
#define NETWORK_H
#include <QObject>
class Network
{
public:
Network(const QString &name);
QString name() const;
private:
QString m_name;
};
#endif // NETWORK_H
The note is not visible to the blocked user.