smesh/doc/salome/gui/SMESH/whdata/whgdata.js
2004-06-18 08:55:35 +00:00

25 lines
390 B
JavaScript
Executable File

var gIEA = new Array();
function aGE(sName, sDef)
{
var len = gIEA.length;
gIEA[len] = new gloEntry(sName, sDef);
}
function gloEntry(sName, sDef)
{
this.sName = sName;
this.sDef = sDef;
this.nNKOff = 0;
}
function window_OnLoad()
{
if (parent && parent != this) {
if (parent.putData)
{
parent.putData(gIEA);
}
}
}
window.onload = window_OnLoad;