blob: 61c4468dbdebf59d14c51afc42b0077c092bbaaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _QV_READ_ERROR
#define _QV_READ_ERROR
class QvInput;
class QvReadError {
public:
static void post(const QvInput *in, const char *formatString ...);
};
#endif /* _QV_READ_ERROR */
|