2005-03-17 14:20:42 +00:00
|
|
|
#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);
|
2005-03-31 23:41:34 +00:00
|
|
|
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);
|
2005-03-17 14:20:42 +00:00
|
|
|
|
|
|
|
public: // meglio pubic?
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|