#ifndef __CALIB02_H #define __CALIB02_H #ifndef __REPORT_H #include #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); void msg_format_commessa_costo(TVariant_stack& stack); public: // meglio pubic? }; #endif