|
#ifndef UNNNN_H
|
|
#define UNNNN_H
|
|
|
|
#include <QString>
|
|
|
|
template <class TargetType> class TypeDefine {
|
|
public:
|
|
static QString suffix() { return TargetType::t; }
|
|
};
|
|
|
|
class EditView : public TypeDefine<EditView> {
|
|
public:
|
|
static QString t;
|
|
};
|
|
|
|
#endif // UNNNN_H
|