C++ TargetRTS
Loading...
Searching...
No Matches
RTAbortController.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 __RTAbortController_h__
11#define __RTAbortController_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTPeerController_h__
18#include <RTPeerController.h>
19#endif
20
22{
23public:
24 explicit RTAbortController( RTDebugger * );
25 virtual ~RTAbortController( void );
26
27 virtual void mainLoop( void ) override;
28
29private:
30 // unavailable methods
32 RTAbortController & operator=( const RTAbortController & );
33}; //lint !e1712
34
35#endif // __RTAbortController_h__
Definition: RTAbortController.h:22
Definition: RTDebugger.h:58
A controller that acts as an interface to a physical thread which runs a group of capsule instances i...
Definition: RTPeerController.h:27