C++ TargetRTS
Loading...
Searching...
No Matches
RTQFilter.h
1/*
2 * Licensed Materials - Property of HCL and/or IBM
3 * Copyright HCL Technologies Ltd. 2016, 2021. 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 __RTQFilter_h__
11#define __RTQFilter_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTConfig_h__
18#include <RTConfig.h>
19#endif
20
21class RTMessage;
22
24{
25public:
26 RTS_INLINE RTQFilter( void );
27 virtual ~RTQFilter( void );
28 virtual int select( RTMessage & ) = 0;
29 virtual void accept( RTMessage & ) = 0;
30
31private:
32 // unavailable methods
33 RTQFilter( const RTQFilter & );
34 RTQFilter & operator=( const RTQFilter & );
35};
36
37#if RTS_INLINES
38#include <RTQFilter.inl>
39#endif
40
41#endif // __RTQFilter_h__
Represents a message used for communication between capsule instances.
Definition: RTMessage.h:33
Definition: RTQFilter.h:24