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.
15 lines
257 B
15 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
|
|
|