C++ TargetRTS
Loading...
Searching...
No Matches
RTInterfaceDescriptor.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 __RTInterfaceDescriptor_h__
11#define __RTInterfaceDescriptor_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTConfig_h__
18#include <RTConfig.h>
19#endif
20
21// This structure describes the replication requirements of a single
22// interface of a component of an actor class. These are organized into
23// arrays indexed in same way as relay ports. If an interface is unused,
24// the corresponding entry in the array should specify a replication of
25// zero. The array may be truncated to exclude trailing descriptors
26// specifying replication factor zero.
27
29{
30 const char * name;
31 int replication;
32};
33
34#endif // __RTInterfaceDescriptor_h__
Definition: RTInterfaceDescriptor.h:29