1994-09-16 10:13:08 +00:00
|
|
|
#include <confapp.h>
|
|
|
|
|
|
|
|
class CG5_App : public TConfig_application
|
|
|
|
{
|
|
|
|
public:
|
2003-04-09 10:27:10 +00:00
|
|
|
virtual const char* get_mask_name() const {return "cg5000a";}
|
1994-09-16 10:13:08 +00:00
|
|
|
CG5_App() : TConfig_application(CONFIG_STUDIO) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
int cg5000 (int argc, char* argv[])
|
|
|
|
{
|
|
|
|
CG5_App appc;
|
2003-04-03 16:15:58 +00:00
|
|
|
appc.run(argc, argv, TR("Parametri Studio"));
|
1994-09-16 10:13:08 +00:00
|
|
|
return 0;
|
|
|
|
}
|