34 lines
559 B
C
34 lines
559 B
C
|
#ifndef __VEREPLIB_H
|
||
|
#define __VEREPLIB_H
|
||
|
|
||
|
#ifndef __RECPORT_H
|
||
|
#include <report.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __VELIB_H
|
||
|
#include "velib.h"
|
||
|
#endif
|
||
|
|
||
|
class TDocument_recordset : public TISAM_recordset
|
||
|
{
|
||
|
protected:
|
||
|
virtual const TVariant& get(int logic, const char* field) const;
|
||
|
|
||
|
public:
|
||
|
TDocument_recordset(const char* use);
|
||
|
virtual ~TDocument_recordset();
|
||
|
};
|
||
|
|
||
|
class TDocument_report : public TReport
|
||
|
{
|
||
|
protected:
|
||
|
virtual bool set_recordset(const TString& query);
|
||
|
|
||
|
public:
|
||
|
bool load(const char* name);
|
||
|
};
|
||
|
|
||
|
const TDocumento& rec2doc(const TRectype& rec);
|
||
|
|
||
|
#endif
|