forked from aristanetworks/EosSdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass_map.cpp
42 lines (30 loc) · 794 Bytes
/
class_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
// Copyright (c) 2014 Arista Networks, Inc. All rights reserved.
// Arista Networks, Inc. Confidential and Proprietary.
#include "eos/class_map.h"
#include "impl.h"
namespace eos {
class class_map_mgr_impl : public class_map_mgr {
public:
class_map_mgr_impl() {
}
void resync_init() {
}
void resync_complete() {
}
bool exists(class_map_key_t const & key) const {
return true;
}
class_map_t class_map(class_map_key_t const & key) const {
return class_map_t();
}
void class_map_is(class_map_t const & class_map) {
}
class_map_iter_t class_map_iter(policy_feature_t) const {
class_map_iter_t * nop = 0;
return *nop;
}
void class_map_del(class_map_key_t const & key) {
}
};
DEFINE_STUB_MGR_CTOR(class_map_mgr)
}