Files correlati : ca1.exe Ricompilazione Demo : [ ] Commento : Aggiornamento della stampe anagrafiche sono cambiati i files !!! git-svn-id: svn://10.65.10.50/trunk@12900 c028cbd2-c16b-5b4b-a496-9718f37d4682
32 lines
890 B
C++
Executable File
32 lines
890 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);
|
|
virtual bool use_mask() { return false;}
|
|
|
|
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);
|
|
void msg_format_commessa_costo(TVariant_stack& stack);
|
|
|
|
public: // meglio pubic?
|
|
};
|
|
|
|
#endif
|