blob: a2c81993550b8c902545585a6984f5efdb1eed4b [file] [log] [blame]
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef __VOM_INTERFACE_FACTORY_H__
17#define __VOM_INTERFACE_FACTORY_H__
18
19#include <vapi/vapi.hpp>
20
21#include "vom/interface.hpp"
22
23#include <vapi/interface.api.vapi.hpp>
Neale Ranns4ef42262018-02-20 08:10:44 -080024#include <vapi/vhost_user.api.vapi.hpp>
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070025
26namespace VOM {
27
28class interface_factory
29{
30public:
31 /**
32 * Factory method to construct a new interface from the VPP record
33 */
Neale Rannsa2ee0292017-11-28 22:29:13 -080034 static std::shared_ptr<interface> new_interface(
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070035 const vapi_payload_sw_interface_details& vd);
Neale Ranns4ef42262018-02-20 08:10:44 -080036
37 static std::shared_ptr<interface> new_vhost_user_interface(
38 const vapi_payload_sw_interface_vhost_user_details& vd);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070039};
40};
41
42/*
43 * fd.io coding-style-patch-verification: ON
44 *
45 * Local Variables:
46 * eval: (c-set-style "mozilla")
47 * End:
48 */
49#endif