1995-12-05 17:17:41 +00:00
|
|
|
#ifndef __SC2101_H
|
|
|
|
#define __SC2101_H
|
|
|
|
|
|
|
|
#ifndef __SCSELECT_H
|
|
|
|
#include "scselect.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class TEC_mask : public TSelection_mask
|
|
|
|
{
|
|
|
|
TRelation _ditta;
|
1996-01-09 18:12:13 +00:00
|
|
|
TString _tmp;
|
1995-12-05 17:17:41 +00:00
|
|
|
protected: // TMask
|
|
|
|
virtual void on_firm_change();
|
|
|
|
virtual void start_run();
|
|
|
|
|
1996-01-29 09:07:31 +00:00
|
|
|
static bool lingua_handler(TMask_field& f, KEY k);
|
|
|
|
|
1995-12-05 17:17:41 +00:00
|
|
|
public:
|
|
|
|
const char* get_prof_base() const;
|
|
|
|
const TString& get_prof_code() const;
|
|
|
|
const TString& get_prof_lang() const;
|
1995-12-29 11:58:43 +00:00
|
|
|
const char* get_prof_name() const;
|
1995-12-05 17:17:41 +00:00
|
|
|
|
|
|
|
TEC_mask(const char* name);
|
|
|
|
virtual ~TEC_mask();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|