Files
distributedhardware_distrib…/interfaces/ipc/include/distributed_input_source_stub.h
T
xxxx 184c49f212 Description: add dinput
Match-id-c4186b954aea5487e5d04d2af28d43dce7c496e6
2022-05-17 16:42:53 +08:00

49 lines
1.9 KiB
C++

/*
* Copyright (c) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef DISRIBUTED_INPUT_SOURCE_STUB_H
#define DISRIBUTED_INPUT_SOURCE_STUB_H
#include <iostream>
#include "i_distributed_source_input.h"
#include "iremote_stub.h"
namespace OHOS {
namespace DistributedHardware {
namespace DistributedInput {
class DistributedInputSourceStub : public IRemoteStub<IDistributedSourceInput> {
public:
DistributedInputSourceStub();
virtual ~DistributedInputSourceStub() override;
virtual int32_t OnRemoteRequest(
uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) override;
private:
int32_t HandleRegisterDistributedHardware(MessageParcel &data, MessageParcel &reply);
int32_t HandleUnregisterDistributedHardware(MessageParcel &data, MessageParcel &reply);
int32_t HandlePrepareRemoteInput(MessageParcel &data, MessageParcel &reply);
int32_t HandleUnprepareRemoteInput(MessageParcel &data, MessageParcel &reply);
int32_t HandleStartRemoteInput(MessageParcel &data, MessageParcel &reply);
int32_t HandleStopRemoteInput(MessageParcel &data, MessageParcel &reply);
int32_t HandleIsStartDistributedInput(MessageParcel &data, MessageParcel &reply);
DISALLOW_COPY_AND_MOVE(DistributedInputSourceStub);
};
} // namespace DistributedInput
} // namespace DistributedHardware
} // namespace OHOS
#endif // DISRIBUTED_INPUT_STUB_H