You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
231 B
C
21 lines
231 B
C
9 years ago
|
#ifndef ENUMS_H
|
||
|
#define ENUMS_H
|
||
|
#include <QObject>
|
||
|
|
||
|
|
||
|
class Enums : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_ENUMS(VatType)
|
||
|
public:
|
||
|
|
||
|
enum VatType { HIGH,FIRST_LOWER,SECOND_LOWER };
|
||
|
|
||
|
Enums()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
};
|
||
|
#endif // ENUMS_H
|