Resource Tuner
Loading...
Searching...
No Matches
ServerEndpoint.h
1// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
2// SPDX-License-Identifier: BSD-3-Clause-Clear
3
4#ifndef SERVER_ENDPOINT_H
5#define SERVER_ENDPOINT_H
6
7#include "Utils.h"
8
15public:
16 virtual int32_t ListenForClientRequests() = 0;
17 virtual int32_t closeConnection() = 0;
18};
19
20#endif
ServerEndpoint.