Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
MockDataReceiver.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_LIB_REMOTING_GMOCK_MOCKDATARECEIVER_H
4#define IMT_BASE_LIB_REMOTING_GMOCK_MOCKDATARECEIVER_H
5
6#include <gmock/gmock.h>
9
10namespace imt {
11namespace base {
12namespace lib {
13namespace remoting {
14namespace gmock {
15
20
21public:
22
23 MOCK_METHOD(void, onDataReceived, (uint8_t const* const pData, uint32_t const countDataBytes), (override));
24};
25
26} // namespace gmock
27} // namespace remoting
28} // namespace lib
29} // namespace base
30} // namespace imt
31
32#endif // #ifndef IMT_BASE_LIB_REMOTING_GMOCK_MOCKDATARECEIVER_H
Inteface for a receiver that can be called when received data needs to be processed.
virtual void onDataReceived(uint8_t const *const pData, uint32_t const countDataBytes)=0
Callback if data is received.
Mock implementation of imt::base::lib::remoting::DataReceiverIfc.
MOCK_METHOD(void, onDataReceived,(uint8_t const *const pData, uint32_t const countDataBytes),(override))
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62