2008-11-14 12:42:11 +00:00
|
|
|
#include <modaut.h>
|
|
|
|
|
|
|
|
#include "bainstlib.h"
|
|
|
|
|
|
|
|
class TInstall_VD : public TInstallmodule_app
|
|
|
|
{
|
|
|
|
protected:
|
2016-02-25 11:33:09 +00:00
|
|
|
virtual int module_number() const { return BSAUT; }
|
2008-11-14 12:42:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int bainst23(int argc, char** argv)
|
|
|
|
{
|
|
|
|
TInstall_VD app;
|
|
|
|
app.run(argc, argv);
|
|
|
|
return 0;
|
|
|
|
}
|