15 lines
335 B
C
15 lines
335 B
C
|
#ifndef __COLIB_H
|
||
|
#define __COLIB_H
|
||
|
|
||
|
#ifndef __VELIB_H
|
||
|
#include "../ve/velib.h"
|
||
|
#endif
|
||
|
|
||
|
// crea la lista documenti per tutti i soci
|
||
|
int compagnia2soci(const TDocumento& doc_compagnia, const TString& codcomp, const long codmercato, TLista_documenti& docs_soci);
|
||
|
void update_spese_doc(const long codmercato, TDocumento& doc);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|