refactoring for better separation of concerns
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
#include "network.h"
|
||||
|
||||
Network::Network(const QString &name)
|
||||
: m_name(name)
|
||||
{
|
||||
}
|
||||
|
||||
QString Network::name() const
|
||||
{
|
||||
return this->m_name;
|
||||
}
|
||||
Reference in New Issue
Block a user