-
Notifications
You must be signed in to change notification settings - Fork 0
/
RAMS7200Drv.cxx
47 lines (37 loc) · 1.18 KB
/
RAMS7200Drv.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 2022 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: Adrien Ledeul (HSE)
*
**/
#include <RAMS7200Drv.hxx>
#include <RAMS7200HWMapper.hxx>
#include <RAMS7200HWService.hxx>
#include <HWObject.hxx>
//------------------------------------------------------------------------------------
void RAMS7200Drv::install_HWMapper()
{
hwMapper = new RAMS7200HWMapper;
}
//--------------------------------------------------------------------------------
void RAMS7200Drv::install_HWService()
{
hwService = new RAMS7200HWService;
}
//--------------------------------------------------------------------------------
HWObject * RAMS7200Drv::getHWObject() const
{
return new HWObject();
}
//--------------------------------------------------------------------------------
void RAMS7200Drv::install_AlertService()
{
DrvManager::install_AlertService();
}