Changeset 2490 in Sophya for trunk/SophyaPI/PIext/piacmd.cc
- Timestamp:
- Jan 2, 2004, 12:31:36 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/piacmd.cc
r2489 r2490 146 146 // static PIACmd* curpiacmd = NULL; 147 147 /* --Methode-- */ 148 PIACmd::PIACmd( NamedObjMgr* omg,PIStdImgApp* app)148 PIACmd::PIACmd(PIStdImgApp* app) 149 149 : Commander() 150 150 { 151 mObjMgr = omg;151 mObjMgr = new NamedObjMgr; 152 152 mImgApp = app; 153 153 helpwin = new PIAHelpWind(app, this); … … 165 165 RegisterCommand(kw, usage, NULL, grp); 166 166 167 basexec = new PIABaseExecutor(this, omg, app);167 basexec = new PIABaseExecutor(this, mObjMgr, app); 168 168 fitexec = new PIAFitter(this, app); 169 169 pawexec = new PAWExecutor(this, app); … … 188 188 PIACmd::~PIACmd() 189 189 { 190 190 delete mObjMgr; 191 191 delete helpwin; 192 192 delete cxxexwin;
Note:
See TracChangeset
for help on using the changeset viewer.