-
Notifications
You must be signed in to change notification settings - Fork 40
/
route_map.cpp
53 lines (41 loc) · 1.38 KB
/
route_map.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
51
52
53
// Copyright (c) 2019 Arista Networks, Inc. All rights reserved.
// Arista Networks, Inc. Confidential and Proprietary.
#include "eos/route_map.h"
#include "impl.h"
namespace eos {
class route_map_mgr_impl : public route_map_mgr {
public:
route_map_mgr_impl() {
}
route_map_t route_map(route_map_name_t const & name) const {
return route_map_t(); // TODO: No op impl.
}
route_map_entry_t route_map_entry(route_map_name_t const & name,
route_map_sequence_number_t sequence) const {
return route_map_entry_t(); // TODO: No op impl.
}
void route_map_set(route_map_name_t const & name,
route_map_t const & map) {
// TODO: No op impl.
}
void route_map_entry_set(route_map_name_t const & name,
route_map_sequence_number_t sequence,
route_map_entry_t const & entry) {
// TODO: No op impl.
}
void route_map_del(route_map_name_t const & name) {
// TODO: No op impl.
}
void route_map_entry_del(route_map_name_t const & name,
route_map_sequence_number_t sequence) {
// TODO: No op impl.
}
uint8_t priority() const {
return 0; // TODO: No op impl.
}
void priority_is(uint8_t priority) {
// TODO: No op impl.
}
};
DEFINE_STUB_MGR_CTOR(route_map_mgr)
} // namespace eos