mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-30 03:34:45 +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;
|
||
|
}
|