Changeset 1251 in Sophya for trunk/SophyaPI/PIext/piacmd.cc
- Timestamp:
- Oct 24, 2000, 10:34:07 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/piacmd.cc
r1224 r1251 16 16 #include "pawexecut.h" 17 17 #include "cxxexecutor.h" 18 #include "cxxexecwin.h" 18 19 19 20 #include PISTDWDG_H … … 314 315 fitexec = new PIAFitter(this, app); 315 316 pawexec = new PAWExecutor(this, app); 316 cxxexec = new CxxExecutor(this, app); 317 CxxExecutor * cxxe = new CxxExecutor(this, app); 318 cxxexec = cxxe; 319 cxxoptwin = new CxxOptionWind(app, cxxe); 320 cxxexwin = new CxxExecWind(app, cxxe); 321 317 322 AddInterpreter(this); 318 323 curcmdi = this; … … 332 337 } 333 338 delete helpwin; 339 delete cxxexwin; 340 delete cxxoptwin; 334 341 if (curpiacmd == this) curpiacmd = NULL; 335 342 delete basexec; … … 908 915 909 916 /* --Methode-- */ 917 void PIACmd::ShowCxxOptionWindow() 918 { 919 cxxoptwin->Show(); 920 } 921 922 /* --Methode-- */ 923 void PIACmd::ShowCxxExecWindow() 924 { 925 cxxexwin->Show(); 926 } 927 928 /* --Methode-- */ 910 929 void PIACmd::HelptoLaTex(string const & fname) 911 930 {
Note:
See TracChangeset
for help on using the changeset viewer.