25 lines
432 B
C
25 lines
432 B
C
|
#ifndef __SC2401_H
|
||
|
#define __SC2401_H
|
||
|
|
||
|
#ifndef __SCSELECT_H
|
||
|
#include "scselect.h"
|
||
|
#endif
|
||
|
|
||
|
class TSol_mask: public TSelection_mask {
|
||
|
TRelation _ditta;
|
||
|
|
||
|
protected:
|
||
|
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;
|
||
|
|
||
|
TSol_mask(const char *name);
|
||
|
virtual ~TSol_mask();
|
||
|
};
|
||
|
|
||
|
#endif // __SC2401_H
|