C++ TargetRTS
Loading...
Searching...
No Matches
RTSignalDescriptor.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 __RTSignalDescriptor_h__
11#define __RTSignalDescriptor_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTConfig_h__
18#include <RTConfig.h>
19#endif
20
21struct RTObject_class;
22
23// This structure describes a signal of a protocol.
24//
25// Field Meaning
26// ----- -------
27// name The name of the signal.
28// type The type associated with the signal.
29// value The internal representation of the signal.
30
32{
33 const char * name;
34 const RTObject_class * type;
35 int value;
36};
37
38#endif // __RTSignalDescriptor_h__
A type descriptor providing information about a type.
Definition: RTObject_class.h:64
Definition: RTSignalDescriptor.h:32