2026-03-23 11:11:55 +08:00
|
|
|
#ifndef EDITVIEW_H
|
|
|
|
|
#define EDITVIEW_H
|
|
|
|
|
|
2026-06-01 16:26:02 +08:00
|
|
|
#include "baseView.h"
|
2026-03-23 11:11:55 +08:00
|
|
|
|
2026-06-01 16:26:02 +08:00
|
|
|
class EditView : public BaseView
|
2026-03-23 11:11:55 +08:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit EditView(QWidget *parent = 0);
|
|
|
|
|
virtual ~EditView();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|