16 lines
311 B
C++
16 lines
311 B
C++
|
#include <confapp.h>
|
||
|
|
||
|
class CG5_App : public TConfig_application
|
||
|
{
|
||
|
public:
|
||
|
virtual const char* get_mask_name() const {return "cg5000a";}
|
||
|
CG5_App() : TConfig_application(CONFIG_STUDIO) {}
|
||
|
};
|
||
|
|
||
|
int cg5000 (int argc, char* argv[])
|
||
|
{
|
||
|
CG5_App appc;
|
||
|
appc.run(argc, argv, TR("Parametri Studio"));
|
||
|
return 0;
|
||
|
}
|