C++ TargetRTS
Loading...
Searching...
No Matches
RTEventReceptionInterface.h
1/*
2 * Licensed Materials - Property of HCL and/or IBM
3 * Copyright HCL Technologies Ltd. 2016, 2025. All Rights Reserved.
4 * Copyright IBM Corporation 1999, 2016. All Rights Reserved.
5 *
6 * U.S. Government Users Restricted Rights - Use, duplication or
7 * disclosure restricted by GSA ADP Schedule.
8 */
9
10#ifndef __RTEventReceptionInterface_h__
11#define __RTEventReceptionInterface_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17
18class RTMessage;
19
24{
25public:
31 virtual bool match( const RTMessage * ) = 0;
32
34};
35
36#endif //__RTEventReceptionInterface_h__
Abstract description of an event that is expected to be received by a capsule that uses the RTMultiRe...
Definition: RTEventReceptionInterface.h:24
virtual bool match(const RTMessage *)=0
Check if a received message matches the expectations on a received event as described in the concrete...
Represents a message used for communication between capsule instances.
Definition: RTMessage.h:33