00001 #include "Event/trsDataVI.h" 00002 00003 //#################################### 00004 void trsDataVI::update() 00005 //#################################### 00006 { 00007 clear(); 00008 make(); 00009 } 00010 //#################################### 00011 void trsDataVI::command(std::string com) 00012 //#################################### 00013 { 00014 if (com == "clear") clear(); 00015 else if (com == "make") make(); 00016 else if (com == "update") update(); 00017 else if (com == "writeOut") writeOut(); 00018 }