cgma
|
00001 // file ToolData.cc 00002 00003 #include "ToolData.hpp" 00004 00005 #include "CastTo.hpp" 00006 00007 ToolData::~ToolData() {} 00008 00009 // note virtual functions often can't be inlined, and the "is_xxx" 00010 // functions aren't inlined in a lot of cases where their address is 00011 // taken. 00012 00013 ToolData* ToolData::propogate(ToolDataUser* new_td_user) 00014 { 00015 (void)new_td_user; 00016 return NULL; 00017 } 00018 00019 ToolData* ToolData::merge(ToolDataUser* other_td_user) 00020 { 00021 (void)other_td_user; 00022 return NULL; 00023 }