26 lines
466 B
C
26 lines
466 B
C
|
#ifndef __SC2101_H
|
||
|
#define __SC2101_H
|
||
|
|
||
|
#ifndef __SCSELECT_H
|
||
|
#include "scselect.h"
|
||
|
#endif
|
||
|
|
||
|
class TEC_mask : public TSelection_mask
|
||
|
{
|
||
|
TRelation _ditta;
|
||
|
|
||
|
protected: // TMask
|
||
|
virtual void on_firm_change();
|
||
|
virtual void start_run();
|
||
|
|
||
|
public:
|
||
|
const char* get_prof_base() const;
|
||
|
const TString& get_prof_code() const;
|
||
|
const TString& get_prof_lang() const;
|
||
|
|
||
|
TEC_mask(const char* name);
|
||
|
virtual ~TEC_mask();
|
||
|
};
|
||
|
|
||
|
#endif
|