mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-29 11:14:40 +00:00
11 lines
272 B
C++
11 lines
272 B
C++
#include "networkprofilemainmodel.h"
|
|
#include "userview.h"
|
|
|
|
NetworkProfileMainModel::NetworkProfileMainModel(QObject *ptr): QObject (ptr) {
|
|
_userViewModel = new UserView (this);
|
|
}
|
|
|
|
QObject *NetworkProfileMainModel::userViewModel() const {
|
|
return _userViewModel;
|
|
}
|