24 lines
515 B
C
24 lines
515 B
C
|
#ifndef __PE1500_H
|
||
|
#define __PE1500_H
|
||
|
|
||
|
#ifndef __RECARRAY_H
|
||
|
#include <recarray.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __MASK_H
|
||
|
#include <mask.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __VELIB_H
|
||
|
class TDocumento;
|
||
|
#endif
|
||
|
|
||
|
int pe_numero_fasi(const TRecord_array& rdoc);
|
||
|
int pe_numero_fasi(const TDocumento& doc);
|
||
|
|
||
|
const TString& pe_trova_elaborazione(const TRectype& doc, char tipo);
|
||
|
const TString& pe_trova_elaborazione(const TMask& doc, char tipo);
|
||
|
bool pe_genera_documento(TRectype& doc, const TString& codelab, char tipo);
|
||
|
|
||
|
#endif
|