Files correlati : ca1 Ricompilazione Demo : [ ] Commento : Aggiunta stampa anagrafiche della contabilita' analitica git-svn-id: svn://10.65.10.50/trunk@12813 c028cbd2-c16b-5b4b-a496-9718f37d4682
30 lines
766 B
C++
Executable File
30 lines
766 B
C++
Executable File
#ifndef __CALIB02_H
|
|
#define __CALIB02_H
|
|
|
|
#ifndef __REPORT_H
|
|
#include <report.h>
|
|
#endif
|
|
|
|
///////////////////////////////////////////////////////////
|
|
// TAnal_rapport
|
|
///////////////////////////////////////////////////////////
|
|
|
|
class TAnal_report : public TReport
|
|
{
|
|
unsigned int _first_msg;
|
|
|
|
protected: // protected is safer
|
|
virtual size_t get_usr_words(TString_array& words) const;
|
|
virtual bool execute_usr_word(unsigned int opcode, TVariant_stack& stack);
|
|
|
|
void msg_format(int logicnum, TVariant_stack& stack);
|
|
void msg_format_costo (TVariant_stack& stack);
|
|
void msg_format_commessa(TVariant_stack& stack);
|
|
void msg_format_fase (TVariant_stack& stack);
|
|
void msg_format_conto (TVariant_stack& stack);
|
|
|
|
public: // meglio pubic?
|
|
};
|
|
|
|
#endif
|