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
309 B

#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, false)
};
#endif