2002-12-20 16:15:03 +00:00
|
|
|
|
1998-11-04 18:04:26 +00:00
|
|
|
#include <execp.h>
|
2002-12-20 16:15:03 +00:00
|
|
|
#include <inst.h>
|
|
|
|
#include <modaut.h>
|
2002-04-26 10:47:22 +00:00
|
|
|
#include <tabutil.h>
|
1998-11-04 18:04:26 +00:00
|
|
|
|
|
|
|
#include "bainst.h"
|
|
|
|
#include "bainst31.h"
|
|
|
|
|
|
|
|
class TInstall_VE : public TInstallmodule_app
|
|
|
|
{
|
2002-12-20 16:15:03 +00:00
|
|
|
protected:
|
2002-04-26 10:47:22 +00:00
|
|
|
virtual bool load_default_data() const ;
|
2002-12-20 16:15:03 +00:00
|
|
|
virtual int module_number() const {return VEAUT;}
|
1998-11-04 18:04:26 +00:00
|
|
|
virtual bool install_firm() {return TRUE;} // no firm installation
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual ~TInstall_VE () {}
|
|
|
|
};
|
|
|
|
|
2002-04-26 10:47:22 +00:00
|
|
|
bool TInstall_VE::load_default_data() const
|
|
|
|
{
|
|
|
|
TTable tip("%TIP");
|
|
|
|
const bool empty = tip.first() != NOERR;
|
|
|
|
|
|
|
|
return empty;
|
|
|
|
}
|
|
|
|
|
1998-11-04 18:04:26 +00:00
|
|
|
|
|
|
|
int bainst31(int argc, char** argv)
|
|
|
|
{
|
|
|
|
TInstall_VE app;
|
|
|
|
app.run(argc, argv);
|
|
|
|
return 0;
|
|
|
|
}
|