-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathkafkaDrv.cxx
47 lines (37 loc) · 1.17 KB
/
kafkaDrv.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/** © Copyright 2019 CERN
*
* This software is distributed under the terms of the
* GNU Lesser General Public Licence version 3 (LGPL Version 3),
* copied verbatim in the file “LICENSE”
*
* In applying this licence, CERN does not waive the privileges
* and immunities granted to it by virtue of its status as an
* Intergovernmental Organization or submit itself to any jurisdiction.
*
* Author: Alexandru Savulescu (HSE-CEN-CO)
*
**/
#include <kafkaDrv.hxx>
#include <kafkaHWMapper.hxx>
#include <kafkaHWService.hxx>
#include <HWObject.hxx>
//------------------------------------------------------------------------------------
void kafkaDrv::install_HWMapper()
{
hwMapper = new kafkaHWMapper;
}
//--------------------------------------------------------------------------------
void kafkaDrv::install_HWService()
{
hwService = new kafkaHWService;
}
//--------------------------------------------------------------------------------
HWObject * kafkaDrv::getHWObject() const
{
return new HWObject();
}
//--------------------------------------------------------------------------------
void kafkaDrv::install_AlertService()
{
DrvManager::install_AlertService();
}