forked from aristanetworks/EosSdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheapi.cpp
More file actions
30 lines (21 loc) · 634 Bytes
/
eapi.cpp
File metadata and controls
30 lines (21 loc) · 634 Bytes
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
// Copyright (c) 2017 Arista Networks, Inc. All rights reserved.
// Arista Networks, Inc. Confidential and Proprietary.
#include "eos/eapi.h"
#include "impl.h"
namespace eos {
class eapi_mgr_impl : public eapi_mgr {
public:
eapi_mgr_impl() {
}
eapi_response_t run_show_cmd(std::string const &) const {
return eapi_response_t();
}
eapi_response_t run_show_cmd_text(std::string const &) const {
return eapi_response_t();
}
eapi_response_t run_config_cmds(std::vector<std::string> const &) const {
return eapi_response_t();
}
};
DEFINE_STUB_MGR_CTOR(eapi_mgr)
} // end namespace eos