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.
17 lines
308 B
17 lines
308 B
3 years ago
|
#ifndef MARKERMODEVIEWMODEL_H
|
||
|
#define MARKERMODEVIEWMODEL_H
|
||
|
|
||
|
#include "viewModel/BaseViewModel.h"
|
||
|
|
||
|
class MarkerModeViewModel : public BaseViewModel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
US_VIEW_MODEL(MarkerModeViewModel)
|
||
|
SINGLETON(MarkerModeViewModel)
|
||
|
|
||
|
|
||
|
US_PROPERTY_VIEW_ONLY(bool, isMarkerModeActive, true)
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|