corretto il caricamento dei forms. aggiunto il settaggio per la fincatura anche in modo testo. sostituiti i metodi x() con set_x(). git-svn-id: svn://10.65.10.50/trunk@2418 c028cbd2-c16b-5b4b-a496-9718f37d4682
27 lines
495 B
C++
Executable File
27 lines
495 B
C++
Executable File
#ifndef __SC2101_H
|
|
#define __SC2101_H
|
|
|
|
#ifndef __SCSELECT_H
|
|
#include "scselect.h"
|
|
#endif
|
|
|
|
class TEC_mask : public TSelection_mask
|
|
{
|
|
TRelation _ditta;
|
|
TString _tmp;
|
|
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;
|
|
const char* get_prof_name() const;
|
|
|
|
TEC_mask(const char* name);
|
|
virtual ~TEC_mask();
|
|
};
|
|
|
|
#endif
|