blob: a8a626162b515bccdcd7840c8b17c9448e15f42d [file] [log] [blame]
Beerappa S M7af96e52021-04-20 18:57:54 +00001 /*
2 * Copyright 2021-present Open Networking Foundation
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 * http://www.apache.org/licenses/LICENSE-2.0
7 * Unless required by applicable law or agreed to in writing, software
8 * distributed under the License is distributed on an "AS IS" BASIS,
9 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10 * See the License for the specific language governing permissions and
11 * limitations under the License.
12 */
13
14#ifndef DMI_COMMON_H_
15#define DMI_COMMON_H_
16
17#include <iostream>
18#include <string>
19#include <memory>
20#include <vector>
21#include <grpc/grpc.h>
22#include <grpc++/server.h>
23#include <grpc++/server_builder.h>
24#include <grpc++/server_context.h>
25#include <grpcpp/grpcpp.h>
26
27using grpc::Server;
28using grpc::ServerBuilder;
29using grpc::ServerContext;
30using grpc::ServerWriter;
31using grpc::Status;
32using grpc::ResourceQuota;
33
34#endif