refactoring for better separation of concerns

This commit is contained in:
talksik
2024-02-08 16:24:08 -08:00
parent b83f80f7ec
commit dc74c0ede7
9 changed files with 86 additions and 54 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "network.h"
Network::Network(const QString &name)
: m_name(name)
{
}
QString Network::name() const
{
return this->m_name;
}