1998-11-04 18:04:26 +00:00
|
|
|
#include <applicat.h>
|
|
|
|
#include <mask.h>
|
|
|
|
#include <config.h>
|
|
|
|
#include <utility.h>
|
|
|
|
#include <isam.h>
|
|
|
|
|
|
|
|
#include "bainst.h"
|
|
|
|
#include "bainst32.h"
|
|
|
|
|
|
|
|
class TInstall_MG : public TInstallmodule_app
|
|
|
|
{
|
|
|
|
TMask * _m;
|
|
|
|
protected:
|
|
|
|
virtual int module_number() const {return 32;}
|
1999-10-22 10:00:18 +00:00
|
|
|
virtual bool post_installer();
|
1998-11-04 18:04:26 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
virtual ~TInstall_MG () {}
|
|
|
|
};
|
|
|
|
|
1999-10-22 10:00:18 +00:00
|
|
|
bool TInstall_MG::post_installer()
|
|
|
|
{
|
|
|
|
set_tab_app("mg0 -0");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
bool TInstall_MG::load_default_data() const
|
|
|
|
{
|
|
|
|
TTable cau("%CAU");
|
|
|
|
const bool empty = cau.first() != NOERR;
|
|
|
|
|
|
|
|
return empty;
|
|
|
|
}
|
|
|
|
|
1998-11-04 18:04:26 +00:00
|
|
|
int bainst32(int argc, char** argv)
|
|
|
|
{
|
|
|
|
TInstall_MG app;
|
|
|
|
app.run(argc, argv);
|
|
|
|
return 0;
|
|
|
|
}
|