#include <command.h>
Inheritance diagram for CommandSelect:


Public Member Functions | |
| CommandSelect (std::string _target) | |
| void | process (ExecutionEnvironment &) |
| ~CommandSelect () | |
Private Attributes | |
| std::string | target |
|
|
Definition at line 41 of file command.cpp. 00041 : target(_target) 00042 { 00043 }
|
|
|
Definition at line 45 of file command.cpp. 00046 {
00047 }
|
|
|
Implements InstantaneousCommand. Definition at line 49 of file command.cpp. References target. 00050 {
00051 Selection sel = env.getSimulation()->findObjectFromPath(target);
00052 env.getSimulation()->setSelection(sel);
00053 }
|
|
|
Definition at line 74 of file command.h. Referenced by process(). |
1.4.1