campo-sirio/ba/bainst07.cpp

21 lines
296 B
C++
Raw Normal View History

#include <modaut.h>
#include "bainstlib.h"
class TInstall_CG : public TInstallmodule_app
{
protected:
virtual int module_number() const { return CGAUT; }
public:
virtual ~TInstall_CG () {}
};
int bainst07(int argc, char** argv)
{
TInstall_CG app;
app.run(argc, argv);
return 0;
}