Branch data Line data Source code
1 : : // file ToolData.cc
2 : :
3 : : #include "ToolData.hpp"
4 : :
5 : : #include "CastTo.hpp"
6 : :
7 [ - + ]: 8708 : ToolData::~ToolData() {}
8 : :
9 : : // note virtual functions often can't be inlined, and the "is_xxx"
10 : : // functions aren't inlined in a lot of cases where their address is
11 : : // taken.
12 : :
13 : 0 : ToolData* ToolData::propogate(ToolDataUser* new_td_user)
14 : : {
15 : : (void)new_td_user;
16 : 0 : return NULL;
17 : : }
18 : :
19 : 0 : ToolData* ToolData::merge(ToolDataUser* other_td_user)
20 : : {
21 : : (void)other_td_user;
22 : 0 : return NULL;
23 : : }
|