ec3e3658a5
Files correlati : ve0 Ricompilazione Demo : [ ] Commento : Aggiunta libreria per gestire stampa di documenti tramite report git-svn-id: svn://10.65.10.50/trunk@13176 c028cbd2-c16b-5b4b-a496-9718f37d4682
34 lines
559 B
C++
Executable File
34 lines
559 B
C++
Executable File
#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
|