Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione AGA 1.7 patch 349 git-svn-id: svn://10.65.10.50/trunk@10708 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			35 lines
		
	
	
		
			625 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			625 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
 | 
						|
#include <execp.h>
 | 
						|
#include <inst.h>
 | 
						|
#include <modaut.h>
 | 
						|
#include <tabutil.h>
 | 
						|
 | 
						|
#include "bainst.h"
 | 
						|
#include "bainst31.h"
 | 
						|
 | 
						|
class TInstall_VE : public TInstallmodule_app
 | 
						|
{
 | 
						|
 protected:
 | 
						|
  virtual bool load_default_data() const ;
 | 
						|
  virtual int module_number() const {return VEAUT;}
 | 
						|
  virtual bool install_firm() {return TRUE;} // no firm installation
 | 
						|
 | 
						|
public:
 | 
						|
  virtual ~TInstall_VE () {}
 | 
						|
};
 | 
						|
 | 
						|
bool TInstall_VE::load_default_data() const
 | 
						|
{        
 | 
						|
  TTable tip("%TIP");
 | 
						|
  const bool empty = tip.first() != NOERR;
 | 
						|
  
 | 
						|
  return empty;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
int bainst31(int argc, char** argv)
 | 
						|
{ 
 | 
						|
  TInstall_VE app;
 | 
						|
  app.run(argc, argv);
 | 
						|
  return 0;
 | 
						|
} |