Line data Source code
1 : /**
2 : * @file HadesDesign.cpp
3 : *
4 : * This is part of the DUNE DAQ Software Suite, copyright 2020.
5 : * Licensing/copyright details are in the COPYING file that you should have
6 : * received with this code.
7 : */
8 :
9 : #include "timing/HadesDesign.hpp"
10 :
11 : #include <sstream>
12 : #include <string>
13 :
14 : namespace dunedaq::timing {
15 :
16 0 : UHAL_REGISTER_DERIVED_NODE(HadesDesign)
17 :
18 : //-----------------------------------------------------------------------------
19 0 : HadesDesign::HadesDesign(const uhal::Node& node)
20 : : TopDesignInterface(node)
21 : , EndpointDesignInterface(node)
22 0 : , ChronosDesign(node)
23 0 : {}
24 : //-----------------------------------------------------------------------------
25 :
26 : //-----------------------------------------------------------------------------
27 0 : HadesDesign::~HadesDesign()
28 0 : {}
29 : //-----------------------------------------------------------------------------
30 : } // namespace dunedaq::timing
|