blob: 929618e8b77965b11283f0a6ab4c013860e9e594 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _QV_SF_BOOL_
#define _QV_SF_BOOL_
#include <QvSubField.h>
class QvSFBool : public QvSField {
public:
QvBool value;
QV_SFIELD_HEADER(QvSFBool);
};
#endif /* _QV_SF_BOOL_ */
|