1996-06-20 07:24:36 +00:00
|
|
|
// 773100 - Parametri di studio 770
|
1996-06-17 08:46:44 +00:00
|
|
|
#include <confapp.h>
|
|
|
|
|
|
|
|
class M73_App : public TConfig_application
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual bool user_create();
|
1997-01-23 10:02:49 +00:00
|
|
|
virtual bool firm_change_enabled() const;
|
1996-06-17 08:46:44 +00:00
|
|
|
M73_App() : TConfig_application(CONFIG_STUDIO) {}
|
|
|
|
virtual ~M73_App() {}
|
|
|
|
};
|
|
|
|
|
1996-06-20 07:24:36 +00:00
|
|
|
bool M73_App::user_create()
|
1996-06-17 08:46:44 +00:00
|
|
|
{
|
|
|
|
TString16 section;
|
|
|
|
const char* edit_mask = "773100a";
|
|
|
|
|
|
|
|
section = name();
|
|
|
|
section.cut(2);
|
|
|
|
|
|
|
|
// Forza EdMask in prassis.ini
|
|
|
|
TConfig cnf (CONFIG_STUDIO, section);
|
|
|
|
cnf.get("EdMask", section, -1, edit_mask);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1997-01-23 10:02:49 +00:00
|
|
|
bool M73_App::firm_change_enabled() const
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1996-06-17 08:46:44 +00:00
|
|
|
int m73100 (int argc, char* argv[])
|
|
|
|
{
|
|
|
|
M73_App appc;
|
|
|
|
appc.run(argc, argv, "Parametri Modello 770");
|
|
|
|
return 0;
|
|
|
|
}
|