-
Notifications
You must be signed in to change notification settings - Fork 7
/
ICanBusSharerImpl.cpp
50 lines (35 loc) · 1.11 KB
/
ICanBusSharerImpl.cpp
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
48
49
50
// -*- mode:C++; tab-width:4; c-basic-offset:4; indent-tabs-mode:nil -*-
#include "LacqueyFetch.hpp"
using namespace roboticslab;
// -----------------------------------------------------------------------------
unsigned int LacqueyFetch::getId()
{
return canId;
}
// -----------------------------------------------------------------------------
bool LacqueyFetch::initialize()
{
return true;
}
// -----------------------------------------------------------------------------
bool LacqueyFetch::finalize()
{
return true;
}
// -----------------------------------------------------------------------------
bool LacqueyFetch::notifyMessage(const can_message & message)
{
return true;
}
// -----------------------------------------------------------------------------
bool LacqueyFetch::registerSender(ICanSenderDelegate * sender)
{
this->sender = sender;
return true;
}
// -----------------------------------------------------------------------------
bool LacqueyFetch::synchronize(double timestamp)
{
return true;
}
// -----------------------------------------------------------------------------