C++ TargetRTS
Loading...
Searching...
No Matches
RTCmdLineObserver.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 __RTCmdLineObserver_h__
11#define __RTCmdLineObserver_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTObserver_h__
18#include <RTObserver.h>
19#endif
20
22{
23public:
26 int id,
27 const char * initBuf = nullptr,
28 int initLen = 0 );
29
30 virtual ~RTCmdLineObserver( void );
31
32 virtual int evtRtsStatus( int daemonId, const RTEventInfo & ) override;
33
34 virtual int receiveData( void ) override;
35
36private:
37 // unavailable methods
39 RTCmdLineObserver & operator=( const RTCmdLineObserver & );
40}; //lint !e1712
41
42#endif // __RTCmdLineObserver_h__
Definition: RTCmdLineObserver.h:22
Definition: RTDebugger.h:58
Definition: RTEventInfo.h:26
Definition: RTObserver.h:28
Definition: RTTcpSocket.h:24