1995-12-05 09:22:10 +00:00
|
|
|
#ifndef __RIGHEDOC_H
|
|
|
|
#define __RIGHEDOC_H
|
|
|
|
// Numero di colonne presenti sullo sheet totale
|
|
|
|
#ifndef __ASSOC_H
|
|
|
|
#include "assoc.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __REAL_H
|
|
|
|
#include "real.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __ISAM_H
|
|
|
|
#include "isam.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __EXPR_H
|
|
|
|
#include "expr.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __TABUTIL_H
|
|
|
|
#include "tabutil.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
1996-08-12 08:32:28 +00:00
|
|
|
#ifndef __VARMASK_H
|
|
|
|
#include "varmask.h"
|
|
|
|
#endif
|
|
|
|
|
1996-09-26 15:37:19 +00:00
|
|
|
#ifndef __VELIB01_H
|
|
|
|
#include "velib01.h"
|
|
|
|
#endif
|
1995-12-05 09:22:10 +00:00
|
|
|
|
1996-09-26 15:37:19 +00:00
|
|
|
class TRiga_documento_motore : public TRiga_documento
|
1995-12-05 09:22:10 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Carica la riga dalla riga dello sheet
|
1996-09-26 15:37:19 +00:00
|
|
|
void load( TSheet_field& f, TToken_string& row);
|
1995-12-05 09:22:10 +00:00
|
|
|
// Registra la riga sullo sheet
|
1996-06-18 15:55:39 +00:00
|
|
|
void save( TSheet_field& f, TToken_string& row);
|
1995-12-05 09:22:10 +00:00
|
|
|
|
1996-09-26 15:37:19 +00:00
|
|
|
TRiga_documento_motore(TDocumento* doc) : TRiga_documento(doc) { }
|
|
|
|
TRiga_documento_motore(const TRiga_documento& rec, TDocumento* doc) : TRiga_documento(rec, doc) { }
|
1995-12-05 09:22:10 +00:00
|
|
|
|
1996-09-26 15:37:19 +00:00
|
|
|
virtual ~TRiga_documento_motore() {}
|
1995-12-05 09:22:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|