IUF-SDK-3
Interventional Ultrasound Library
iufHistoryNodeList.h
Go to the documentation of this file.
1 #ifndef IUFLIBRARY_IUFHISTORYNODELIST_H
2 #define IUFLIBRARY_IUFHISTORYNODELIST_H
3 
4 #include <iufHistoryNode.h>
5 
10 (
11  int numHistoryNodes
12 );
13 
18 (
19  iuhnl_t list
20 );
21 
26 (
27  iuhnl_t reference,
28  iuhnl_t actual
29 );
30 
35 (
36  iuhnl_t list
37 );
38 
43 (
44  iuhnl_t list,
45  int index
46 );
47 
52 (
53  iuhnl_t list,
54  iuhn_t member,
55  int index
56 );
57 
58 #endif //IUFLIBRARY_IUFHISTORYNODELIST_H
Definition: iufHistoryNodeList.c:8
int iufHistoryNodeListCompare(iuhnl_t reference, iuhnl_t actual)
Compare two IufHistoryNodeList objects with each other.
Definition: iufHistoryNodeList.c:60
Definition: iufHistoryNodeADT.h:4
iuhn_t iufHistoryNodeListGet(iuhnl_t list, int index)
Gets the node from the list at index.
Definition: iufHistoryNodeList.c:89
int iufHistoryNodeListGetSize(iuhnl_t list)
Get the number of nodes in the IufHistoryNodeList.
Definition: iufHistoryNodeList.c:80
int iufHistoryNodeListDelete(iuhnl_t list)
Delete a IufHistoryNodeList and all its entries.
Definition: iufHistoryNodeList.c:38
iuhnl_t iufHistoryNodeListCreate(int numHistoryNodes)
Create an empty list of IufHistoryNode for numHistoryNode nodes.
Definition: iufHistoryNodeList.c:17
int iufHistoryNodeListSet(iuhnl_t list, iuhn_t member, int index)
Sets the node member in list at index.
Definition: iufHistoryNodeList.c:100