Migration of QtMvvm from github
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.

16 lines
257 B

#ifndef TABVIEWMODEL_H
#define TABVIEWMODEL_H
#include <QtMvvmCore/ViewModel>
class TabViewModel : public QtMvvm::ViewModel
{
Q_OBJECT
public:
Q_INVOKABLE explicit TabViewModel(QObject *parent = nullptr);
~TabViewModel();
};
#endif // TABVIEWMODEL_H