17 lines
265 B
C
17 lines
265 B
C
|
#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
|