//--------------------------------------------------------------------------- public qModelPol(qModelPol aModelPol) { if (this != aModelPol) { //this = aModelPol; throw new System.NotImplementedException(); } }
//++++++++++++++++++++++++++ //--------------------------------------------------------------------------- public new qModel newModel() { try { qModelPol tModel; tModel = new qModelPol(); return tModel; } catch { throw new System.ApplicationException("Could not allocate. Bye ..."); } }