1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// file ToolData.cc<--- Skipping configuration 'DBL_MAX' since the value of 'DBL_MAX' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'DBL_MIN' since the value of 'DBL_MIN' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'M_PI' since the value of 'M_PI' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.

#include "ToolData.hpp"

#include "CastTo.hpp"

ToolData::~ToolData() {}

// note virtual functions often can't be inlined, and the "is_xxx"
// functions aren't inlined in a lot of cases where their address is
// taken.

ToolData* ToolData::propogate(ToolDataUser* new_td_user)
{
  (void)new_td_user;
  return NULL;
}

ToolData* ToolData::merge(ToolDataUser* other_td_user)
{
  (void)other_td_user;
  return NULL;
}