You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
475 B
25 lines
475 B
4 years ago
|
#ifndef USERVIEWMODEL_H
|
||
|
#define USERVIEWMODEL_H
|
||
|
|
||
|
#include "viewModel/BaseViewModel.h"
|
||
|
|
||
|
#include "viewModel/user/DataUser.h"
|
||
|
|
||
|
#include "model/csm/core/EMenuTab.h"
|
||
|
|
||
|
class UserViewModel : public BaseViewModel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
US_VIEW_MODEL(UserViewModel)
|
||
|
SINGLETON(UserViewModel)
|
||
|
|
||
|
private:
|
||
|
DataUser_t _data;
|
||
|
|
||
|
US_PROPERTY(EMenuTab::eMenuTab, activeTab, EMenuTab::B_TAB)
|
||
|
US_PROPERTY(bool, viewProbeSelection, false)
|
||
|
US_PROPERTY(bool, viewTGC, false)
|
||
|
};
|
||
|
|
||
|
#endif //USERVIEWMODEL_H
|