Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione 01.05 patch 648 git-svn-id: svn://10.65.10.50/trunk@8633 c028cbd2-c16b-5b4b-a496-9718f37d4682
39 lines
653 B
C++
Executable File
39 lines
653 B
C++
Executable File
#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;}
|
|
virtual bool post_installer();
|
|
|
|
public:
|
|
virtual ~TInstall_MG () {}
|
|
};
|
|
|
|
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;
|
|
}
|
|
|
|
int bainst32(int argc, char** argv)
|
|
{
|
|
TInstall_MG app;
|
|
app.run(argc, argv);
|
|
return 0;
|
|
} |