git-svn-id: svn://10.65.10.50/branches/R_10_00@22929 c028cbd2-c16b-5b4b-a496-9718f37d4682
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
|