Changeset 7331 in orxonox.OLD for trunk/src/lib/shell
- Timestamp:
- Apr 18, 2006, 4:48:37 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/shell/shell_command.cc
r7320 r7331 184 184 { 185 185 186 (* alias)->getCommand()->executor->execute(objectList->front(), inputSplits.getSubSet(1).join()); /// TODO CHECK IF OK186 (*(*alias)->getCommand()->executor)(objectList->front(), inputSplits.getSubSet(1).join()); /// TODO CHECK IF OK 187 187 } 188 188 else 189 (* alias)->getCommand()->executor->execute(objectList->front(), "");189 (*(*alias)->getCommand()->executor)(objectList->front(), ""); 190 190 return true; 191 191 } … … 241 241 return false; 242 242 if (inputSplits.size() > fktPos+1) 243 (* cmdIT)->executor->execute(objectPointer, inputSplits.getSubSet(2).join()); /// TODO CHECK IF OK243 (*(*cmdIT)->executor)(objectPointer, inputSplits.getSubSet(2).join()); /// TODO CHECK IF OK 244 244 else 245 (* cmdIT)->executor->execute(objectPointer, "");245 (*(*cmdIT)->executor)(objectPointer, ""); 246 246 return true; 247 247 }
Note: See TracChangeset
for help on using the changeset viewer.