Export C++ project JS plugin
Is there some overview of the possible operations on the "helper" JS object?
I would like to obtain an array of all entity_table_names.
I would like to obtain an array of all entity_table_names.
QxOrm : ORM (Object Relational Mapping) C++ library - QxEntityEditor : graphic editor for QxOrm library
http://www.qxorm.com/forum/phpbb/
Is there some overview of the possible operations on the "helper" JS object ?
I would like to obtain an array of all entity_table_names.
var allEntities = new Array(); // global variable
customProcess : function(params)
{
try
{
allEntities.push(params[13]); // Add current entity id to the global array
// Write the pro file ==> so all entities have been processed
if (params[4].endsWith(".pro"))
{
// Here you can iterate over all entities
for (i = 0; i < allEntities.length; i++)
{ /* ... */ }
}
}
catch (err)
{ return ("[CustomScriptError] an unexpected error occurred : " + err); }
}it would be cool to get the C++ project location out of the helper object to write files directly there.
Is there some overview of the possible operations on the "helper" JS object?
I would like to obtain an array of all entity_table_names.
it would be cool to get the C++ project location out of the helper object to write files directly there
log = log + "\n - output_location = " + params[16];