34 lines
761 B
C
34 lines
761 B
C
|
#ifndef __MG3500A_H
|
||
|
#define __MG3500A_H
|
||
|
|
||
|
class TForm_storgiac : public TForm_stampemg
|
||
|
{
|
||
|
TSorted_cursor * _sortcur;
|
||
|
bool _use_alternate_cursor;
|
||
|
public:
|
||
|
void use_alternate_cursor(const bool b = TRUE) { _use_alternate_cursor = b; }
|
||
|
virtual TCursor* cursor() const ;
|
||
|
TForm_storgiac(const char *name,const char *code) ;
|
||
|
virtual ~TForm_storgiac();
|
||
|
};
|
||
|
|
||
|
class TStampa_storgiac : public TSkeleton_application
|
||
|
{
|
||
|
TStampemg_mask * _mask;
|
||
|
TCursor * _cur;
|
||
|
TForm_storgiac * _form; // to be moved into TPrint_application
|
||
|
|
||
|
protected:
|
||
|
virtual bool create();
|
||
|
virtual bool destroy();
|
||
|
virtual void main_loop();
|
||
|
virtual void set_def_valuta(TForm_storgiac & f) {}
|
||
|
|
||
|
public:
|
||
|
TStampa_storgiac() {}
|
||
|
virtual ~TStampa_storgiac() {};
|
||
|
};
|
||
|
|
||
|
#endif //__MG3500A_H
|
||
|
|