blob: 70c9048641ceb930253ef11f90d26c4712e002b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _QV_SF_STRING_
#define _QV_SF_STRING_
#include <QvSubField.h>
class QvSFString : public QvSField {
public:
QvString value;
QV_SFIELD_HEADER(QvSFString);
};
#endif /* _QV_SF_STRING_ */
|