qx_shared_ptr as shared pointer
Posted: Thu May 26, 2016 12:00 pm
It would be nice if QxEntityEditor could offer qx_shared_ptr as a smart pointer, and maybe others as well: http://www.qxorm.com/qxorm_en/manual.html#manual_400
So the generated entites would become more consistent, since the last typedef below remains always "qx_shared_ptr".
So the generated entites would become more consistent, since the last typedef below remains always "qx_shared_ptr".
- Code: Select all
class QTPROGRAM_EXPORT Addresses
{
...
public:
typedef qx_shared_ptr<Mg::QtProgram::Dal_QxORM::Countries> type_idCountry;
...
};
...
typedef qx_shared_ptr<Addresses> Addresses_ptr;