Changeset 1265 in Sophya
- Timestamp:
- Oct 31, 2000, 6:05:42 PM (25 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/cxxexecutor.cc
r1262 r1265 445 445 os<<"LIBS := $(LIBS) -ldl -lf2c"<<endl; 446 446 os<<"endif"<<endl; 447 os<<"%.so: $(OBJ)%.o"<<endl;447 os<<"%.so:%.o"<<endl; 448 448 os<<"%:%.cc"<<endl; 449 449 os<<"%:%.o"<<endl; … … 456 456 os<<"%:%.so"<<endl; 457 457 os<<"\t"<<"echo $@ \" made (.so) \""<<endl; 458 os<<"%.so: $(OBJ)%.o"<<endl;458 os<<"%.so:%.o"<<endl; 459 459 os<<"\t"<<"$(LINK.cc) -shared -o $@ $< $(LIBS) $(MYLIBS)"<<endl; 460 os<<" $(OBJ)%.o:%.cc"<<endl;460 os<<"%.o:%.cc"<<endl; 461 461 os<<"\t"<<"$(COMPILE.cc) -o $@ $<"<<endl; 462 os<<" $(OBJ)%.o:%.c"<<endl;462 os<<"%.o:%.c"<<endl; 463 463 os<<"\t"<<"$(COMPILE.c) -c $(CFLAGS) $(USERFLAGS) -o $@ $<"<<endl; 464 464 //--------------------------------------------------------------------- -
trunk/SophyaPI/PIext/nobjmgr.cc
r1224 r1265 196 196 197 197 /* --Methode-- */ 198 virtual string const& NamedObjMgr::GetTmpDir() 199 { 200 return *TmpDir; 201 } 202 203 /* --Methode-- */ 204 virtual void NamedObjMgr::SetTmpDir(string const& tmpdir) 205 { 206 if(tmpdir.length()<1) return; 207 *TmpDir = tmpdir; 208 } 209 210 /* --Methode-- */ 198 211 bool NamedObjMgr::SetVar(string const & key, string const & val) 199 212 { -
trunk/SophyaPI/PIext/nobjmgr.h
r1224 r1265 97 97 virtual PIStdImgApp* GetImgApp(); 98 98 virtual Services2NObjMgr* GetServiceObj(); 99 virtual string const& GetTmpDir(); 100 virtual void SetTmpDir(string const& tmpdir); 99 101 100 102 virtual void AddWRsId(string & nom, int wrsid); -
trunk/SophyaPI/PIext/piacmd.cc
r1262 r1265 819 819 } 820 820 // Execution d'une commande enregistree 821 // CMV c'est ici qu'il faut passer la string 821 822 else rc = ExecuteCommand(kw, tokens); 822 823 -
trunk/SophyaPI/PIext/pistdimgapp.cc
r1251 r1265 371 371 else if ( msg == 30200 ) { // Objet PIConsole 372 372 string s = mCons->GetCmdString(); 373 string s2 = "\nExecuting " + s + "\n"; 374 mCons->AddStr(s2.c_str(), PIVA_Blue, true); 373 // string s2 = "\nExecuting " + s + "\n"; 374 mCons->AddStr("Cmd> ", PIVA_Blue, false); 375 // s2 = s + "\n"; 376 mCons->AddStr(s.c_str(), PIVA_Blue|PIVA_Bold, false); 377 mCons->AddChar('\n', PIVA_Def, true); 375 378 SetBusy(); 376 379 #ifdef SANS_EVOLPLANCK
Note:
See TracChangeset
for help on using the changeset viewer.